View source: R/data_checking.R
check_mass_dataset | R Documentation |
This function performs various checks on the mass dataset to ensure its integrity and consistency. It checks the format and content of expression_data
, sample_info
, variable_info
, sample_info_note
, and variable_info_note
.
check_mass_dataset(
expression_data,
sample_info,
variable_info,
sample_info_note,
variable_info_note
)
expression_data |
A data frame containing expression data. |
sample_info |
A data frame containing sample information. |
variable_info |
A data frame containing variable information. |
sample_info_note |
A data frame containing notes for sample information. |
variable_info_note |
A data frame containing notes for variable information. |
The function performs a series of checks to validate the integrity and consistency of the mass dataset. It checks for missing data, data types, and the relationship between different components of the dataset.
A string indicating the result of the checks. It returns "all good." if all checks pass, otherwise it returns an error message.
Xiaotao Shen shenxt1990@outlook.com
data("expression_data")
data("sample_info")
data("variable_info")
check_mass_dataset(
expression_data = expression_data,
sample_info = sample_info,
variable_info = variable_info,
)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.