step_spline_monotone()
creates a specification of a recipe step that
creates monotone spline features.
step_spline_monotone(
recipe,
...,
role = "predictor",
trained = FALSE,
deg_free = 10,
degree = 3,
complete_set = TRUE,
options = NULL,
keep_original_cols = FALSE,
results = NULL,
skip = FALSE,
id = rand_id("spline_monotone")
)
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 this step.
See selections()
for more details.
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.
A logical to indicate if the quantities for preprocessing have been estimated.
The degrees of freedom for the b-spline. As the degrees of freedom for a b-spline increase, more flexible and complex curves can be generated.
The degree of I-spline defined to be the degree of the associated M-spline instead of actual polynomial degree. For example, I-spline basis of degree 2 is defined as the integral of associated M-spline basis of degree 2.
If TRUE
, the complete basis matrix will be returned.
Otherwise, the first basis will be excluded from the output. This maps to
the intercept
argument of the corresponding function from the
splines2 package and has the same default value.
A list of options for splines2::iSpline()
which should not
include x
, df
, degree
, periodic
, or intercept
.
A logical to keep the original variables in the
output. Defaults to FALSE
.
A list of objects created once the step has been trained.
A logical. Should the step be skipped when the recipe is baked by
bake()
? While all operations are baked when prep()
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 = TRUE
as it
may affect the computations for subsequent operations.
A character string that is unique to this step to identify it.
An object with classes "step_spline_monotone"
and "step"
.
Spline transformations take a numeric column and create multiple features that, when used in a model, can estimate nonlinear trends between the column and some outcome. The degrees of freedom determines how many new features are added to the data.
These splines are integrated forms of M-splines and are non-negative and monotonic. This means that, when used with a fitting function that produces non-negative regression coefficients, the resulting fit is monotonic.
If the spline expansion fails for a selected column, the step will remove
that column's results (but will retain the original data). Use the tidy()
method to determine which columns were used.
When you tidy()
this step, a tibble is returned with
columns terms
and id
:
character, the selectors or variables selected
character, id of this step
This step has 2 tuning parameters:
deg_free
: Spline Degrees of Freedom (type: integer, default: 10)
degree
: Polynomial Degree (type: integer, default: 3)
The underlying operation does not allow for case weights.
library(tidyr)
library(dplyr)
library(ggplot2)
data(ames, package = "modeldata")
spline_rec <- recipe(Sale_Price ~ Longitude, data = ames) |>
step_spline_monotone(Longitude, deg_free = 6, keep_original_cols = TRUE) |>
prep()
tidy(spline_rec, number = 1)
#> # A tibble: 1 × 2
#> terms id
#> <chr> <chr>
#> 1 Longitude spline_monotone_QEg7v
# Show where each feature is active
spline_rec |>
bake(new_data = NULL,-Sale_Price) |>
pivot_longer(c(starts_with("Longitude_")), names_to = "feature", values_to = "value") |>
mutate(feature = gsub("Longitude_", "feature ", feature)) |>
filter(value > 0) |>
ggplot(aes(x = Longitude, y = value)) +
geom_line() +
facet_wrap(~ feature)