transforming | R Documentation |
Transformation of the dataMatrix intensities
transforming( x, method.vc = c("log2", "log10", "sqrt")[1], report.c = c("none", "interactive", "myfile.txt")[2] ) ## S4 method for signature 'MultiAssayExperiment' transforming( x, method.vc = c("log2", "log10", "sqrt")[1], report.c = c("none", "interactive", "myfile.txt")[2] ) ## S4 method for signature 'SummarizedExperiment' transforming( x, method.vc = c("log2", "log10", "sqrt")[1], report.c = c("none", "interactive", "myfile.txt")[2] ) ## S4 method for signature 'MultiDataSet' transforming( x, method.vc = c("log2", "log10", "sqrt")[1], report.c = c("none", "interactive", "myfile.txt")[2] ) ## S4 method for signature 'ExpressionSet' transforming( x, method.vc = c("log2", "log10", "sqrt")[1], report.c = c("none", "interactive", "myfile.txt")[2] )
x |
An S4 object of class |
method.vc |
character(): type of transformation (either 'log2', 'log10', or 'sqrt'); in case of a MultiAssayExperiment, distinct methods may be provided for each dataset |
report.c |
Character: File name with '.txt' extension for the printed results (call to sink()'); if 'interactive' (default), messages will be printed on the screen; if 'none', no verbose will be generated |
SummarizedExperiment
(or MultiAssayExperiment
) including the (list of) matrix
with transformed intensities
sacurine.se <- reading(system.file("extdata/W4M00001_Sacurine-statistics", package = "phenomis")) sacurine.se <- correcting(sacurine.se) sacurine.se <- sacurine.se[, colData(sacurine.se)[, "sampleType"] != "pool"] sacurine.se <- transforming(sacurine.se) # MultiDataSet prometis.mae <- reading(system.file("extdata/prometis", package = "phenomis")) prometis.mset <- transforming(prometis.mset)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.