- 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 selections()
for more details.
- 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.
- num_comp
The number of components to retain as new predictors.
If num_comp
is greater than the number of columns or the number of
possible components, a smaller value will be used. If num_comp = 0
is set then no transformation is done and selected variables will
stay unchanged.
- num_run
A positive integer for the number of computations runs used
to obtain a consensus projection.
- options
A list of options to nmf()
in the NMF package by way of the
NNMF()
function in the dimRed
package. Note that the arguments
data
and ndim
should not be passed here, and that NMF's parallel
processing is turned off in favor of resample-level parallelization.
- res
The NNMF()
object is stored
here once this preprocessing step has been trained by
prep()
.
- columns
A character string of variable names that will
be populated elsewhere.
- prefix
A character string that will be the prefix to the
resulting new variables. See notes below.
- seed
An integer that will be used to set the seed in isolation
when computing the factorization.
- keep_original_cols
A logical to keep the original variables in the
output. Defaults to FALSE
.
- skip
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.
- id
A character string that is unique to this step to identify it.