View source: R/transformations.R
impute_rf | R Documentation |
Impute the missing values in the exprs part of the object using a
random forest. The estimated error in the imputation is logged.
It is recommended to set the seed number for reproducibility
(it is called random forest for a reason).
This a wrapper around missForest::missForest
.
Use parallelize = "variables" to run in parallel for faster testing.
NOTE: running in parallel prevents user from setting a seed number.
CITATION: When using this function, cite the missForest
package
impute_rf(object, all_features = FALSE, ...)
object |
a MetaboSet object |
all_features |
logical, should all features be used? If FALSE (the default), flagged features are removed before imputation. |
... |
passed to MissForest function |
MetaboSet object as the one supplied, with missing values imputed.
missForest
for detail about the algorithm and the parameters
missing <- mark_nas(example_set, 0)
set.seed(38)
imputed <- impute_rf(missing)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.