FillMissing {fastai} | R Documentation |
Fill the missing values in continuous columns.
FillMissing(
cat_names,
cont_names,
fill_strategy = FillStrategy_MEDIAN(),
add_col = TRUE,
fill_val = 0
)
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 |
None
## Not run:
procs = list(FillMissing(),Categorify(),Normalize())
## End(Not run)