transformationUI {wilson} | R Documentation |
transformation module UI representation
Description
This function provides an input to select a transformation method.
Usage
transformationUI(
id,
label = "Transformation",
selected = "raw",
choices = list(None = "raw", log2 = "log2", `-log2` = "-log2", log10 = "log10",
`-log10` = "-log10", `Z score` = "zscore", `regularized log` = "rlog"),
transposeOptions = FALSE
)
Arguments
id |
The ID of the modules namespace. |
label |
A character vector of length one with the label for the |
selected |
The initially selected value. See |
choices |
Named list of available transformations. Possible transformations are list('None' = "raw", 'log2' = "log2", '-log2' = "-log2", 'log10' = "log10", '-log10' = "-log10", 'Z score' = "zscore", 'regularized log' = "rlog") which is also the default. |
transposeOptions |
Boolean value if transpose radioButtons are shown (Default = FALSE). |
Value
A list with HTML tags from tag
.
[Package wilson version 2.4.2 Index]