We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0ec7950 commit d623b30Copy full SHA for d623b30
.github/workflows/pkgdown.yaml
@@ -37,6 +37,8 @@ jobs:
37
remotes::install_dev("pkgdown")
38
remotes::install_github("tidyverse/tidytemplate")
39
remotes::install_cran("tidymodels")
40
+ remotes::install_cran("C50")
41
+ remotes::install_cran("modeldata")
42
shell: Rscript {0}
43
44
- name: Install package
vignettes/articles/Submodels.Rmd
@@ -27,7 +27,7 @@ We'll use the attrition data in `rsample` to illustrate:
27
28
```{r}
29
library(tidymodels)
30
-data(attrition)
+data(attrition, package = "modeldata")
31
32
set.seed(4595)
33
data_split <- initial_split(attrition, strata = "Attrition")
0 commit comments