step_vast
creates a specification of a recipe
step that will perform VAST scaling on the columns
step_vast( recipe, ..., scaling = "autoscale", role = NA, trained = FALSE, means = NULL, sds = NULL, cvs = NULL, na_rm = TRUE, skip = FALSE, id = rand_id("vast") ) # S3 method for step_vast tidy(x, ...)
recipe | A 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 |
scaling | Either |
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. |
means | A named numeric vector of means. This
is |
sds | A named numeric vector of stadard deviations. This
is |
cvs | A named numeric vector of variation coeficients. This
is |
na_rm | A logical value indicating whether |
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. |
x | A |
An updated version of recipe
with the new step
added to the sequence of existing steps (if any). For the
tidy
method, a tibble with columns terms
(the
selectors or variables selected), value
(the
standard deviations and means), and statistic
for the type of value.
Variable Stability (VAST) scaling preforms centering and scaling followed by a weighting of each variable by its variation coeficient.
The argument scaling
controls which scaling method should be used before
variable weighting. autoscale
will perform mean-centering and standard deviation
scaling while pareto
will scale by the square-root of the standard deviation.
Keun H. C., Ebbels T. M. D., Antti H., Bollard M. E., Beckonert O., Holmes E., et al. (2003). Improved analysis of multivariate data by variable stability scaling: application to NMR-based metabolic profiling. Anal. Chim. Acta 490, 265–276 10.1016/S0003-2670(03)00094-1 https://www.sciencedirect.com/science/article/abs/pii/S0003267003000941
library(tidySpectR) library(recipes) autoscale_vast <- recipe(Species ~. , iris) %>% step_vast(all_predictors(), scaling = 'autoscale') pareto_vast <- recipe(Species ~. , iris) %>% step_vast(all_predictors(), scaling = 'pareto')