Description Usage Arguments Value Examples
A step_* method used in recipe to filter the features using independent sample t test
1 2 3 4 5 6 7 8 9 10 |
recipe |
a recipe object |
... |
the selected features |
role |
see recipe description |
trained |
see recipe description |
ref_dist |
the selected feature names, you didn't need to assign |
options |
the options to run step_anova |
skip |
see recipe description |
id |
the id of this step |
a recipe object
1 2 3 4 5 | data(cells)
cells <- mutate(cells) %>% select(-case)
colnames(cells)[1] <- 'Label'
a_rec <- recipe(Label~., data = cells) %>%
step_anova(all_predictors())
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.