step_nest {nestedmodels} | R Documentation |
Nest transformation
Description
step_nest()
creates a specification of a recipe step that will
convert specified data into a single model term, specifying the 'nest'
that each row of the dataset corresponds to.
Usage
step_nest(
recipe,
...,
role = "predictor",
trained = FALSE,
names = NULL,
lookup_table = NULL,
skip = FALSE,
id = recipes::rand_id("nest")
)
Arguments
recipe |
A recipe object. The step will be added to the sequence of operations for this recipe. |
... |
One or more selector functions to choose variables.
For |
role |
For model terms created by this step, what analysis role should they be assigned? By default, the new columns created by this step from the original variables will be used as predictors in a model. |
trained |
A logical to indicate if the quantities for preprocessing have been estimated. |
names |
The names of the variables selected by |
lookup_table |
The table describing which values of your selected
columns correspond to which unique nest id are stored here once this
preprocessing step has been trained by |
skip |
A logical. Should the step be skipped when the
recipe is baked by |
id |
A character string that is unique to this step to identify it. |
Details
step_nest()
will create a single nominal variable (named '.nest_id')
from a set of variables (of any type). Every unique combination
of the specified columns will receive a single nest id.
This recipe step is designed for use with nested models, since a model will be fitted on the data corresponding to each nest id. Using a recipe is often easier and more reliable than nesting the data manually.
The nest id corresponding to each unique combination of column values is
decided when the recipe is prepped (if this recipe is contained in a
workflow, this happens when the workflow is fitted). This means that
when using a prepped recipe on new data (using recipes::prep()
or
workflows::predict.workflow()
), all unique combinations of nesting
columns must also exist in the training data. You will be warned if
this is not the case. If you are using the 'rsample' package to create
splits and this presents an issue, you may want to consider using
nested_resamples()
.
step_nest()
is designed so that nesting the transformed data by its
'.nest_id' column is equivalent to the following action on the
non-transformed data:
data %>% dplyr::group_by(...) %>% # '...' represents your specified terms tidyr::nest()
Value
An updated version of recipe with the new step added to the sequence of any existing operations.
Tidying
When you tidy()
this step, a tibble is returned showing
how each unique value of the terms you have specified correspond to each
nest id.
Case weights
The underlying operation does not allow for case weights.
Examples
library(recipes)
recipe <- recipe(example_nested_data, z ~ x + id) %>%
step_nest(id)
recipe %>%
prep() %>%
bake(NULL)
recipe2 <- recipe(example_nested_data, z ~ x + id) %>%
step_nest(-c(x, z))
recipe2 %>%
prep() %>%
bake(NULL)