This is a constructor to create your own imputation methods.
Usage
makeImputeMethod(learn, impute, args = list())Arguments
- learn
(
function(data, target, col, ...))
Function to learn and extract information on columncolout of data framedata. Argumenttargetspecifies the target column of the learning task. The function has to return a named list of values.- impute
(
function(data, target, col, ...))
Function to impute missing values incolusing information returned bylearnon the same column. All list elements of the return values olearnare passed to this function into....- args
(list)
Named list of arguments to pass tolearnvia....
See also
Other impute:
imputations,
impute(),
makeImputeWrapper(),
reimpute()
