View source: R/stackable_functions.R
drop_low_columns | R Documentation |
Specifies a function to calculate the value of the column and a percentile, below which samples will be dropped.
drop_low_columns(
my_dt = NULL,
col_names = NULL,
col_value = median,
my_summary = "Drop low expressing columns.",
sample_key = get_default_sample_key(),
percentile_cutoff = 10,
readme_path = NULL
)
my_dt |
data.table input |
col_names |
Vector of character strings to name the columns that will have this
operation performed on them. Uses |
col_value |
Function that describes how column values are computed |
my_summary |
Character string to change the default comment that will be appended to my_dt. |
sample_key |
Character string to specify the column that is the sample key. This column will not be operated upon. |
percentile_cutoff |
Numeric percentile. Columns below this percentile will be dropped |
readme_path |
Optional path to which the comments will be appended. |
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ drop_low_columns ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.