step_sequence_onehot()
creates a specification of a recipe step that will
take a string and do one hot encoding for each character by position.
step_sequence_onehot(
recipe,
...,
role = "predictor",
trained = FALSE,
columns = NULL,
sequence_length = 100,
padding = "pre",
truncating = "pre",
vocabulary = NULL,
prefix = "seq1hot",
keep_original_cols = FALSE,
skip = FALSE,
id = rand_id("sequence_onehot")
)
An updated version of recipe
with the new step added
to the sequence of existing steps (if any).
A recipes::recipe object. The step will be added to the sequence of operations for this recipe.
One or more selector functions to choose which
variables are affected by the step. See recipes::selections()
for more details.
For model terms created by this step, what analysis role should they be assigned?. By default, the function assumes that the new columns created by the original variables will be used as predictors in a model.
A logical to indicate if the quantities for preprocessing have been estimated.
A character string of variable names that will
be populated (eventually) by the terms
argument. This is NULL
until the step is trained by recipes::prep.recipe()
.
A numeric, number of characters to keep before discarding. Defaults to 100.
'pre' or 'post', pad either before or after each sequence. defaults to 'pre'.
'pre' or 'post', remove values from sequences larger than sequence_length either in the beginning or in the end of the sequence. Defaults too 'pre'.
A character vector, characters to be mapped to integers.
Characters not in the vocabulary will be encoded as 0. Defaults to
letters
.
A prefix for generated column names, defaults to "seq1hot".
A logical to keep the original variables in the
output. Defaults to FALSE
.
A logical. Should the step be skipped when the
recipe is baked by recipes::bake.recipe()
? While all operations are baked
when recipes::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
.
A character string that is unique to this step to identify it.
When you tidy()
this step, a tibble is returned with
columns terms
, vocabulary
, token
, and id
:
character, the selectors or variables selected
integer, index
character, text corresponding to the index
character, id of this step
The underlying operation does not allow for case weights.
The string will be capped by the sequence_length argument, strings shorter then sequence_length will be padded with empty characters. The encoding will assign an integer to each character in the vocabulary, and will encode accordingly. Characters not in the vocabulary will be encoded as 0.
Other Steps for Numeric Variables From Characters:
step_dummy_hash()
,
step_textfeature()
library(recipes)
library(modeldata)
data(tate_text)
tate_rec <- recipe(~medium, data = tate_text) %>%
step_tokenize(medium) %>%
step_tokenfilter(medium) %>%
step_sequence_onehot(medium)
tate_obj <- tate_rec %>%
prep()
bake(tate_obj, new_data = NULL)
tidy(tate_rec, number = 3)
tidy(tate_obj, number = 3)
Run the code above in your browser using DataLab