id
:: character(1)
Identifier of resulting object, default "imput_missRanger"
.
mtry
:: integer(1)
Sample fraction used by missRanger. This param isn't optimized automatically. If NULL default value from ranger package will be used, NULL
.
num.trees
:: integer(1)
Number of trees. If optimize == TRUE. Param set seq(10,num.trees,iter) will be used, default 500
pmm.k
:: integer(1)
Number of candidate non-missing values to sample from in the predictive mean matching step. 0 to avoid this step. If optimize=TRUE params set: sample(1:pmm.k, iter) will be used. If pmm.k=0, missRanger is the same as missForest, default 5
.
random.seed
:: integer(1)
Random seed, default 123
.
iter
:: integer(1)
Number of iterations for a random search, default 10
.
optimize
:: logical(1)
If set TRUE, function will optimize parameters of imputation automatically. If parameters will be tuned by other method, should be set to FALSE, default FALSE
.
out_fill
:: character(1)
Output log file location. If file already exists log message will be added. If NULL no log will be produced, default NULL
.