Train a Data Recipe
For a recipe with at least one preprocessing operation, estimate the required parameters from a training set that can be later applied to other data sets.
prep(x, ...) ## S3 method for class 'recipe' prep( x, training = NULL, fresh = FALSE, verbose = FALSE, retain = TRUE, log_changes = FALSE, strings_as_factors = TRUE, ... )
x |
an object |
... |
further arguments passed to or from other methods (not currently used). |
training |
A data frame or tibble that will be used to estimate parameters for preprocessing. |
fresh |
A logical indicating whether already trained operation should be
re-trained. If |
verbose |
A logical that controls whether progress is reported as operations are executed. |
retain |
A logical: should the preprocessed training set be saved
into the |
log_changes |
A logical for printing a summary for each step regarding which (if any) columns were added or removed during training. |
strings_as_factors |
A logical: should character columns be converted to
factors? This affects the preprocessed training set (when
|
Given a data set, this function estimates the required quantities and statistics required by any operations.
prep()
returns an updated recipe with the estimates.
Note that missing data handling is handled in the steps; there is no global
na.rm
option at the recipe-level or in prep()
.
As the steps are executed, the training
set is updated. For example,
if the first step is to center the data and the second is to scale the
data, the step for scaling is given the centered data.
A recipe whose step objects have been updated with the required
quantities (e.g. parameter estimates, model objects, etc). Also, the
term_info
object is likely to be modified as the operations are
executed.
Max Kuhn
data(ames, package = "modeldata") library(dplyr) ames <- mutate(ames, Sale_Price = log10(Sale_Price)) ames_rec <- recipe( Sale_Price ~ Longitude + Latitude + Neighborhood + Year_Built + Central_Air, data = ames ) %>% step_other(Neighborhood, threshold = 0.05) %>% step_dummy(all_nominal()) %>% step_interact(~ starts_with("Central_Air"):Year_Built) %>% step_ns(Longitude, Latitude, deg_free = 5) prep(ames_rec, verbose = TRUE) prep(ames_rec, log_changes = TRUE)
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.