transformAssay | R Documentation |
data.frame
,
tbl
or matrix
The function transformAssay
transforms the (count/intensity) values
of a matrix
. It uses either log
, log2
, log10
,
variance stabilizing normalisation (vsn
) or no transformation method
(pass-through, none
). The object
x
has the samples in the columns and the features in the rows.
transformAssay(
a,
method = c("none", "log", "log2", "log10", "vsn"),
.offset = 1
)
a |
|
method |
|
.offset |
|
Internal use in shinyQC
.
matrix
a <- matrix(seq_len(1000), nrow = 100, ncol = 10,
dimnames = list(seq_len(100), paste("sample", seq_len(10))))
transformAssay(a, "none")
transformAssay(a, "log")
transformAssay(a, "log2")
transformAssay(a, "vsn")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.