mv_filter | R Documentation |
This function calculates the percentage of missing values and keeps those features with missing values percentage less than the designed threshold.
mv_filter(x, thres = 0.3)
x |
a data matrix. The columns are features. |
thres |
threshold of missing values. Features less than this threshold will be kept. Value has to be between 0 and 1. |
a list of with contents:
dat the filtered data matrix
idx a logical vector of index for keeping features.
mv_perc()
Other variable filters:
blank_filter()
,
locfdr_filter()
,
qc_filter()
,
rsd_filter()
,
var_filter()
meta <- mtExtra:::meta
mv_perc(meta)
mv_filter(meta, thres = 0.3)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.