Description Usage Arguments Details Examples
View source: R/transformations.R
Impute missing values using a simple imputation strategy. All missing values of a feature are imputed with the same value. It is possible to only impute features with a large number of missing values this way. This can be useful for using this function before random forest imputation to speed things up. The imputation strategies available are:
1  | impute_simple(object, value, na_limit = 0)
 | 
object | 
 a MetaboSet object  | 
value | 
 the value used for imputation, either a numeric or one of "min", "half_min", "small_random", see above  | 
na_limit | 
 only impute features with the proportion of NAs over this limit. For example, if
  | 
a numeric value: impute all missing values in all features with the same value, e.g. 1
"min": impute missing values of a feature with the minimum observed value of that feature
"half_min": impute missing values of a feature with half the minimum observed value of that feature
"small_random": impute missing values of a feature with random numbers between 0 and the minimum of that feature (uniform distribution, remember to set the seed number!).
1 2  | missing <- mark_nas(merged_sample, 0)
imputed <- impute_simple(missing, value = "min")
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.