View source: R/mutate_variable_zero.R
mutate_variable_zero_freq | R Documentation |
This function adds a new column to the variable_info
slot of a mass_dataset object,
which contains the frequency of zeros for each variable according to the samples specified.
mutate_variable_zero_freq(object, according_to_samples = "all")
object |
A mass_dataset object. |
according_to_samples |
A character vector specifying the sample IDs to consider when calculating zero frequency. Default is "all", which considers all samples. |
A modified mass_dataset object with an updated variable_info
slot.
Xiaotao Shen shenxt1990@outlook.com
data("expression_data")
data("sample_info")
data("variable_info")
object =
create_mass_dataset(
expression_data = expression_data,
sample_info = sample_info,
variable_info = variable_info,
)
object
##calculate NA frequency according to all the samples
object2 =
mutate_variable_zero_freq(object = object)
head(extract_variable_info(object))
head(extract_variable_info(object2))
##calculate NA number according to only QC samples
object3 =
mutate_variable_zero_freq(object = object2,
according_to_samples =
get_sample_id(object)[extract_sample_info(object)$class == "QC"])
object3
head(extract_variable_info(object3))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.