rsd_filter | R Documentation |
Filtering variable based on relative standard deviation (RSD).
rsd_filter(x, thres = 20)
x |
a data frame where columns are features. |
thres |
threshold of RSD. Features less than this threshold will be kept. |
a list of with contents:
dat the filtered data matrix
idx a logical vector of index for keeping features.
Other variable filters:
blank_filter()
,
locfdr_filter()
,
mv_filter()
,
qc_filter()
,
var_filter()
x <- matrix(rnorm(20 * 20), ncol = 20)
res <- rsd_filter(x, thres = 30)
dim(res$dat)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.