fdata | R Documentation |
Get/Set sample/feature data
fdata(object)
sdata(object)
fdt(object)
sdt(object)
## S4 method for signature 'SummarizedExperiment'
fdata(object)
## S4 method for signature 'SummarizedExperiment'
sdata(object)
## S4 method for signature 'SummarizedExperiment'
fdt(object)
## S4 method for signature 'SummarizedExperiment'
sdt(object)
fdata(object) <- value
sdata(object) <- value
fdt(object) <- value
sdt(object) <- value
## S4 replacement method for signature 'SummarizedExperiment,data.frame'
fdata(object) <- value
## S4 replacement method for signature 'SummarizedExperiment,data.frame'
sdata(object) <- value
## S4 replacement method for signature 'SummarizedExperiment,DataFrame'
sdata(object) <- value
## S4 replacement method for signature 'SummarizedExperiment,data.table'
fdt(object) <- value
## S4 replacement method for signature 'SummarizedExperiment,data.table'
sdt(object) <- value
object |
SummarizedExperiment |
value |
data.frame/data.table |
data.frame/data.table (get) or updated object (set)
# Read data
file <- system.file('extdata/billing19.proteingroups.txt', package = 'autonomics')
object <- read_maxquant_proteingroups(file)
# sdt/fdt
sdt(object)[1:3, ]
fdt(object)[1:3, ]
sdt(object) %<>% cbind(b=1)
fdt(object) %<>% cbind(b=1)
sdt(object)
fdt(object)
# sdata/fdata
sdata(object)[1:3, ]
fdata(object)[1:3, ]
sdata(object) %<>% cbind(a=1)
fdata(object) %<>% cbind(a=1)
sdata(object)[1:3, ]
fdata(object)[1:3, ]
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.