initialise {VIM} | R Documentation |
Rough estimation of missing values in a vector according to its type.
initialise(x,mixed,method="kNN")
x |
a vector. |
mixed |
a character vector containing the names of variables of type mixed (semi-continous). |
method |
Method used for Initialization (median or kNN) |
Missing values are imputed with the mean for vectors of class
"numeric"
, with the median for vectors of class "integer"
,
and with the mode for vectors of class "factor"
. Hence, x
should be prepared in the following way: assign class "numeric"
to numeric vectors, assign class "integer"
to ordinal vectors,
and assign class "factor"
to nominal or binary vectors.
the initialized vector.
The function is used internally by some imputation algorithms.
Matthias Templ, modifications by Andreas Alfons