Last chance! 50% off unlimited learning
Sale ends in
step_naomit
creates a specification of a recipe step that
will remove observations (rows of data) if they contain NA
or NaN
values.
step_naomit(
recipe,
...,
role = NA,
trained = FALSE,
columns = NULL,
skip = FALSE,
id = rand_id("naomit")
)# S3 method for step_naomit
tidy(x, ...)
A recipe object. The step will be added to the sequence of operations for this recipe.
One or more selector functions to choose which
variables will be used to remove observations containing NA
or NaN
values. See selections()
for more details.
Unused, include for consistency with other steps.
A logical to indicate if the quantities for preprocessing have been estimated. Again included for consistency.
A character string of variable names that will
be populated (eventually) by the terms
argument.
A logical. Should the step be skipped when the
recipe is baked by bake.recipe()
? While all operations are baked
when prep.recipe()
is run, some operations may not be able to be
conducted on new data (e.g. processing the outcome variable(s)).
Care should be taken when using skip = FALSE
; in most instances that
affect the rows of the data being predicted, this step probably should not
be applied.
A character string that is unique to this step to identify it.
A step_naomit
object.
An updated version of recipe
with the
new step added to the sequence of existing steps (if any).
# NOT RUN {
recipe(Ozone ~ ., data = airquality) %>%
step_naomit(Solar.R) %>%
prep(airquality, verbose = FALSE) %>%
bake(new_data = NULL)
# }
Run the code above in your browser using DataLab