Description Usage Arguments Details Value Slots Examples
View source: R/TimeSeriesExperiment-class.R
TimeSeriesExperiment
is an extension of
SummarizedExperiment
class with the following new slots
(in addition to SummarizedExperiment slots).
Constructor for 'TimeSeriesExperiment' object which stores
same data as SummarizedExperiment
but also slots for time, group,
replicate and other time-series formated data useful for applyting
data-analysis.
1 2 3 4 5 6 |
... |
For
SummarizedExperiment:: SummarizedExperiment, S4 methods |
timepoint |
a vector indicating timepoint at which each sample was collected or a character string equal to one of the column names of a supplied colData. |
group |
a vector indicating a group membership for each sample or a character string equal to one of the column names of a supplied colData. If not specified, the group is set to 'G1' for each sample. |
replicate |
a vector indicating a replicate id of each sample or a character string equal to one of the column names of a supplied colData. If not specified, the replicate is set to 'R1' for each sample. |
The TimeSeriesExperiment
class is an object
(the main data container) used for in the time series/course experiment
analysis. It stores all relevant information associated with the
dataset, including the raw data, group, replicate and time associated
with each sample (column of the data). The object includes also slots
for results from some class-specific methods.
TimeSeriesExperiment
constructor initializes the
TimeSeriesExperiment
TimeSeriesExperiment object and populates
the time, replicate, and group slots.
Returns an initialized TimeSeriesExperiment object.
timepoint
A vector indicating the time-point of each sample collection.
group
A vector indicating the group membership of each sample.
replicate
A vector indicating the replicate id of each sample.
assayCollapsed
A matrix with assay data aggregated over replicates.
colDataCollapsed
A DataFrame where rows correspond to samples aggregated over replicates and columns indicate group membership and time-point.
timeSeries
A list of time-course formatted data. Each element
of the list is a DataFrame with the first three columns
indicating feature, group, replicate, and the remaining ones storing
the assay data at consecutive time points. TimeSeriesExperiment
methods will typically generate elements of the list named: 'ts',
'ts_collapsed'.
dimensionReduction
A list of results from applying dimmensionality reduction methods; elements named by technique used.
clusterAssignment
A list of results from clustering of the time-series features (rows) containing elements: 'settings', 'hclust', 'clust_map' and 'clust_centroids'.
differentialExpression
A list of results from differential expression analysis. Either from point-wise ('timepoint_de') or trajectory ('trajectory_de') differential expression analysis.
1 2 3 4 5 6 7 8 9 10 |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.