values {autonomics} | R Documentation |
Get/Set value matrix
values(object) ## S4 method for signature 'SummarizedExperiment' values(object) values(object) <- value ## S4 replacement method for signature 'SummarizedExperiment,matrix' values(object) <- value ## S4 replacement method for signature 'SummarizedExperiment,numeric' values(object) <- value
object |
SummarizedExperiment |
value |
ratio matrix (features x samples) |
value matrix (get) or updated object (set)
file <- download_data('billing16.proteingroups.txt') object <- read_proteingroups(file, plot=FALSE) values(object)[1:3, 1:3] values(object) <- 0 values(object)[1:3, 1:3]