Code
prep(rec)
Condition
Error in `step_pls()`:
Caused by error in `prep()`:
! Only multivariate models for numeric outcomes are supports.
Code
prep(rec)
Condition
Error in `step_pls()`:
Caused by error in `prep()`:
! Only multivariate models for numeric outcomes are supports.
Code
prep(rec, training = dat)
Condition
Error in `step_pls()`:
Caused by error in `bake()`:
! Name collision occurred. The following variable names already exist:
* `PLS1`
Code
recipe(~., data = mtcars) %>% step_pls(outcome = "mpg", preserve = TRUE)
Condition
Error:
! The `preserve` argument of `step_pls()` was deprecated in recipes 0.1.16 and is now defunct.
i Please use the `keep_original_cols` argument instead.
Code
tmp <- recipe(~., data = mtcars) %>% step_pls(all_predictors(), outcome = "mpg") %>%
prep()
Condition
Warning:
`step_pls()` failed with error: Error in mixOmics::pls(X = x, Y = y, ncomp = 2, scale = TRUE) : mocked error .
Code
recipe(~., data = mtcars) %>% step_pls(all_predictors()) %>% prep()
Condition
Error in `step_pls()`:
! `outcome` should select at least one column.
Code
bake(rec, new_data = biom_tr[, c(-1)])
Condition
Error in `step_pls()`:
! The following required column is missing from `new_data`: carbon.
Code
rec
Message
-- Recipe ----------------------------------------------------------------------
-- Inputs
Number of variables by role
outcome: 1
predictor: 10
-- Operations
* PLS feature extraction with: <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
* PLS feature extraction with: <none> | Trained
Code
rec <- prep(rec)
Condition
Warning:
`keep_original_cols` was added to `step_pls()` after this recipe was created.
i Regenerate your recipe to avoid this warning.
Code
print(rec)
Message
-- Recipe ----------------------------------------------------------------------
-- Inputs
Number of variables by role
outcome: 1
predictor: 5
-- Operations
* PLS feature extraction with: all_predictors()
Code
prep(rec)
Message
-- Recipe ----------------------------------------------------------------------
-- Inputs
Number of variables by role
outcome: 1
predictor: 5
-- Training information
Training data contained 456 data points and no incomplete rows.
-- Operations
* PLS feature extraction with: carbon, hydrogen, oxygen, ... | Trained
Code
recipe(mpg ~ ., data = mtcars) %>% step_pls(-mpg, outcome = "mpg", num_comp = -
1) %>% prep()
Condition
Error in `step_pls()`:
Caused by error in `prep()`:
! `num_comp` must be a whole number larger than or equal to 0, not the number -1.
Code
recipe(mpg ~ ., data = mtcars) %>% step_pls(-mpg, outcome = "mpg", prefix = 1) %>%
prep()
Condition
Error in `step_pls()`:
Caused by error in `prep()`:
! `prefix` must be a single string, not the number 1.
Code
recipe(mpg ~ ., data = mtcars) %>% step_pls(-mpg, outcome = "mpg",
predictor_prop = -1) %>% prep()
Condition
Error in `step_pls()`:
Caused by error in `prep()`:
! `predictor_prop` must be a number between 0 and 1, not the number -1.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.