| check_eset | R Documentation |
Performs quality checks on an expression matrix to identify missing values, infinite values, and features with zero variance. Issues warnings when potential problems are detected that may affect downstream analyses.
check_eset(eset, print_result = FALSE, estimate_sd = FALSE)
eset |
Expression matrix or data frame with genes/features in rows and samples in columns. |
print_result |
Logical indicating whether to print detailed check results to the console. Default is 'FALSE'. |
estimate_sd |
Logical indicating whether to check for features with zero standard deviation. Default is 'FALSE'. |
Invisibly returns 'NULL'. Function is called for its side effects (printing messages and issuing warnings).
Dongqiang Zeng
set.seed(123)
eset <- matrix(rnorm(1000), nrow = 100, ncol = 10)
rownames(eset) <- paste0("Gene", 1:100)
colnames(eset) <- paste0("Sample", 1:10)
check_eset(eset, print_result = TRUE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.