View source: R/string2factor.R
step_string2factor | R Documentation |
step_string2factor()
will convert one or more character vectors to factors
(ordered or unordered).
Use this step only in special cases (see Details) and instead convert strings to factors before using any tidymodels functions.
step_string2factor(
recipe,
...,
role = NA,
trained = FALSE,
levels = NULL,
ordered = FALSE,
skip = FALSE,
id = rand_id("string2factor")
)
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 this step. See |
role |
Not used by this step since no new variables are created. |
trained |
A logical to indicate if the quantities for preprocessing have been estimated. |
levels |
An options specification of the levels to be used
for the new factor. If left |
ordered |
A single logical value; should the factor(s) be ordered? |
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. |
In most cases, if you are planning to use step_string2factor()
without setting levels
, you will be better off converting
those character variables to factor variables before using a recipe.
This can be done using dplyr with the following code
df <- mutate(df, across(where(is.character), as.factor))
During resampling, the complete set of values might
not be in the character data. Converting them to factors with
step_string2factor()
then will misconfigure the levels.
If the levels
argument to step_string2factor()
is used, it will
convert all variables affected by this step to have the same
levels. Because of this, you will need to know the full set of level
when you define the recipe.
Also, note that prep()
has an option strings_as_factors
that
defaults to TRUE
. This should be changed so that raw character
data will be applied to step_string2factor()
. However, this step
can also take existing factors (but will leave them as-is).
An updated version of recipe
with the new step added to the
sequence of any existing operations.
When you tidy()
this step, a tibble is returned with
columns terms
, ordered
, and id
:
character, the selectors or variables selected
logical, are factors ordered
character, id of this step
The underlying operation does not allow for case weights.
Other dummy variable and encoding steps:
step_bin2factor()
,
step_count()
,
step_date()
,
step_dummy()
,
step_dummy_extract()
,
step_dummy_multi_choice()
,
step_factor2string()
,
step_holiday()
,
step_indicate_na()
,
step_integer()
,
step_novel()
,
step_num2factor()
,
step_ordinalscore()
,
step_other()
,
step_regex()
,
step_relevel()
,
step_time()
,
step_unknown()
,
step_unorder()
data(Sacramento, package = "modeldata")
# convert factor to string to demonstrate
Sacramento$city <- as.character(Sacramento$city)
rec <- recipe(~ city + zip, data = Sacramento)
make_factor <- rec %>%
step_string2factor(city)
make_factor <- prep(make_factor,
training = Sacramento
)
make_factor
# note that `city` is a factor in recipe output
bake(make_factor, new_data = NULL) %>% head()
# ...but remains a string in the data
Sacramento %>% head()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.