Code
iris_rec %>% step_sample(size = -1) %>% prep()
Condition
Error in `step_sample()`:
Caused by error in `prep()`:
! `size` must be a number larger than or equal to 0 or `NULL`, not the number -1.
Code
iris_rec %>% step_sample(size = "a") %>% prep()
Condition
Error in `step_sample()`:
Caused by error in `prep()`:
! `size` must be a number or `NULL`, not the string "a".
Code
iris_rec %>% step_sample(replace = "a") %>% prep()
Condition
Error in `step_sample()`:
Caused by error in `prep()`:
! `replace` must be `TRUE` or `FALSE`, not the string "a".
Code
rec
Message
-- Recipe ----------------------------------------------------------------------
-- Inputs
Number of variables by role
predictor: 10
case_weights: 1
-- Training information
Training data contained 32 data points and no incomplete rows.
-- Operations
* Row sampling: <none> | Trained, weighted
Code
rec
Message
-- Recipe ----------------------------------------------------------------------
-- Inputs
Number of variables by role
predictor: 10
case_weights: 1
-- Training information
Training data contained 32 data points and no incomplete rows.
-- Operations
* Row sampling: <none> | Trained, weighted
Code
tmp <- recipe(~., data = mtcars) %>% step_sample(all_predictors())
Condition
Warning:
Selectors are not used for this step.
Code
rec
Message
-- Recipe ----------------------------------------------------------------------
-- Inputs
Number of variables by role
outcome: 1
predictor: 10
-- Operations
* Row sampling: <none>
Code
rec
Message
-- Recipe ----------------------------------------------------------------------
-- Inputs
Number of variables by role
outcome: 1
predictor: 10
-- Training information
Training data contained 32 data points and no incomplete rows.
-- Operations
* Row sampling: <none> | Trained
Code
print(rec)
Message
-- Recipe ----------------------------------------------------------------------
-- Inputs
Number of variables by role
predictor: 5
-- Operations
* Row sampling: <none>
Code
prep(rec)
Message
-- Recipe ----------------------------------------------------------------------
-- Inputs
Number of variables by role
predictor: 5
-- Training information
Training data contained 150 data points and no incomplete rows.
-- Operations
* Row sampling: <none> | Trained
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.