Learn R Programming

recipes (version 1.0.0)

terms_select: Select Terms in a Step Function.

Description

[Deprecated]

terms_select() has been deprecated in favor of recipes_eval_select().

This function bakes the step function selectors and might be useful when creating custom steps.

Usage

terms_select(terms, info, empty_fun = abort_selection)

Value

A character string of column names or an error of there are no selectors or if no variables are selected.

Arguments

terms

A list of formulas whose right-hand side contains quoted expressions. See rlang::quos() for examples.

info

A tibble with columns variable, type, role, and source that represent the current state of the data. The function summary.recipe() can be used to get this information from a recipe.

empty_fun

A function to execute when no terms are selected by the step. The default function throws an error with a message.

See Also

recipe() summary.recipe() prep()

Examples

Run this code
library(rlang)
data(Sacramento, package = "modeldata")
rec <- recipe(~., data = Sacramento)
info <- summary(rec)
terms_select(info = info, quos(all_predictors()))

Run the code above in your browser using DataLab