Description Usage Arguments Details Value Examples
colData()
slots holds information on individual
samples including corresponding sample name in column 'sample' as well as
time, group and replicate.
1 2 | ## S4 replacement method for signature 'TimeSeriesExperiment,ANY'
colData(x, ...) <- value
|
x |
a |
... |
argiments to other functions. |
value |
a DataFrame with new sample information |
The setter also updates the information in timepoint
,
replicate
and group
slots and resets the time-series
analysis results to NULL
.
a S4Vectors::DataFrame
1 2 3 4 5 6 | data("endoderm_small")
head(colData(endoderm_small))
newdf <- colData(endoderm_small)
newdf$random <- sample(ncol(endoderm_small), ncol(endoderm_small))
colData(endoderm_small) <- newdf
head(colData(endoderm_small))
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.