Description Usage Arguments Value Examples
This function converts the wide data matrix
to time-course long data.frame
format where each
row gives data values over time (at each time point) for each
feature, group, and replicate.
1 2 3 4 5 | makeTimeSeries(
object,
feature.trans.method = "var_stab",
var.stabilize.method = "asinh"
)
|
object |
A |
feature.trans.method |
Method for feature normalization. Default "none". Currently supports only "none" (no transformation), "scale_feat_sum" (scaling by feature sum), or "var_stab" (variance stabilization). Default is "var_stab". |
var.stabilize.method |
Method for variance stabilization (VST).
Currently, supports "none" (no VST), "log1p" (log plus one), "asinh"
(inverse hyperbolic sine) or "deseq"
( |
Returns TimeSeriesExperiment
object after conversion to
time-course format. Converted data is stored in
timecourse.data
slot.
1 2 3 4 | data("endoderm_small")
endoderm_small <- makeTimeSeries(endoderm_small)
names(timeSeries(endoderm_small))
head(timeSeries(endoderm_small)[[1]])
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.