| rowData<-,TimeSeriesExperiment-method {TimeSeriesExperiment} | R Documentation |
TimeSeriesExperimentrowData() holds information on individual features
including corresponding feature name in column 'feature'.
## S4 replacement method for signature 'TimeSeriesExperiment' rowData(x, ...) <- value
x |
a |
... |
argiments to other functions. |
value |
a |
data("endoderm_small")
head(rowData(endoderm_small))
rowData(endoderm_small) <- data.frame(
feature = rowData(endoderm_small)$feature,
random = sample(nrow(endoderm_small), nrow(endoderm_small)))
head(rowData(endoderm_small))