The functionality of apply_imputation
is inspired by the
apply
function. The function applies a function
FUN
to impute the missing values in ds
. FUN
must be a
function, which takes a vector as input and returns exactly one value. The
argument type
is comparable to apply
's
MARGIN
argument. It specifies the values that are used for the
calculation of the imputation values. For example, type = "columnwise"
and FUN = mean
will impute the mean of the observed values in a column
for all missing values in this column. In contrast, type = "rowwise"
and FUN = mean
will impute the mean of the observed values in a row
for all missing values in this row.
List of all implemented types
:
"columnwise" (the default): imputes column by column; all observed
values of a column are given to FUN
and the returned value is used
as the imputation value for all missing values of the column.
"rowwise": imputes row by row; all observed values of a row are given
to FUN
and the returned value is used as the imputation value for all
missing values of the row.
"total": All observed values of ds
are given to FUN
and
the returned value is used as the imputation value for all missing values of
ds
.
"Winer": The mean value from "columnwise" and "rowwise" is used as the
imputation value.
"Two-way": The sum of the values from "columnwise" and "rowwise" minus
"total" is used as the imputation value.
If no value can be given to FUN
(for example, if no value in a column
is observed and type = "columnwise"
), then a warning will be issued
and no value will be imputed in the corresponding column or row.