Fill the missing values in continuous columns.

FillMissing(
  cat_names,
  cont_names,
  fill_strategy = FillStrategy_MEDIAN(),
  add_col = TRUE,
  fill_val = 0
)

Arguments

cat_names

The names of the categorical variables

cont_names

The names of the continuous variables

fill_strategy

The strategy of filling

add_col

add_col

fill_val

fill_val

Value

None

Examples


if (FALSE) {

procs = list(FillMissing(),Categorify(),Normalize())

}