The xbioc package defines some generics and methods to apply numeric transformations
to ExpressionSet
objects, which is convenient when working on gene expression
deconvolution algorithms, where scale (log/linear) may matter.
log
log-transforms the expression matrix of ExpressionSet
objects.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | ## S4 method for signature 'ExpressionSet'
log(x, ...)
expb(x, ...)
## S4 method for signature 'numeric'
expb(x, base = exp(1))
## S4 method for signature 'matrix'
expb(x, base = exp(1))
## S4 method for signature 'ExpressionSet'
expb(x, ...)
## S4 method for signature 'ExpressionSet'
exp(x)
## S4 method for signature 'ExpressionSet'
range(x, ..., na.rm = FALSE)
## S3 method for class 'ExpressionSet'
quantile(x, ...)
|
x |
an |
... |
extra arguments passed to subsequent calls, usually of the corresponding method in the stats package. |
base |
log base to use. |
na.rm |
logical that indicates if missing values should be omitted from the computation. |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.