check_sd | R Documentation |
Check if data matrix per group has a minimum or higher per-gene STD
check_sd(objt1, objt2, genes, min.sd = 0.001)
objt1 |
dataset for condition 1, genes in columns |
objt2 |
dataset for condition 2, genes in columns |
genes |
gene names or colnames of objt1/objt2 |
min.sd |
a valid data matrix per group must have at least this much per-feature STD |
list of retained genes and to-be-removed genes for STD reason
data(meta) STAD <- datasets[['STAD']] N <- ncol(STAD) n1 <- N%/%2 objt1 <- t(STAD[,1:n1]) objt2 <- t(STAD[,(n1+1):N]) genes <- rownames(STAD) check.res <- check_sd(objt1,objt2,genes,0.1)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.