@@ -18,8 +18,8 @@ maturing](https://img.shields.io/badge/lifecycle-maturing-blue.svg)](https://www
18
18
19
19
** themis** contain extra steps for the
20
20
[ ` recipes ` ] ( https://CRAN.R-project.org/package=recipes ) package for
21
- dealingwith unbalanced data. The name ** themis** is that of the [ ancient
22
- Greek
21
+ dealin gwith unbalanced data. The name ** themis** is that of the
22
+ [ ancient Greek
23
23
god] ( https://thishollowearth.wordpress.com/2012/07/02/god-of-the-week-themis/ )
24
24
who is typically depicted with a balance.
25
25
@@ -64,7 +64,7 @@ ds_rec <- recipe(Class ~ age + height, data = okc) %>%
64
64
step_smote(Class ) %> %
65
65
prep()
66
66
67
- sort(table(juice (ds_rec )$ Class , useNA = " always" ))
67
+ sort(table(bake (ds_rec , new_data = NULL )$ Class , useNA = " always" ))
68
68
# >
69
69
# > <NA> stem other
70
70
# > 0 50316 50316
@@ -108,7 +108,7 @@ minority classes equal to 100% of the majority class.
108
108
recipe(~ . , example_data ) %> %
109
109
step_upsample(class , over_ratio = 1 ) %> %
110
110
prep() %> %
111
- juice( ) %> %
111
+ bake( new_data = NULL ) %> %
112
112
ggplot(aes(class )) +
113
113
geom_bar()
114
114
```
@@ -122,7 +122,7 @@ less samples then 50% of the majority up to have 50% of the majority.
122
122
recipe(~ . , example_data ) %> %
123
123
step_upsample(class , over_ratio = 0.5 ) %> %
124
124
prep() %> %
125
- juice( ) %> %
125
+ bake( new_data = NULL ) %> %
126
126
ggplot(aes(class )) +
127
127
geom_bar()
128
128
```
@@ -148,7 +148,7 @@ majority classes equal to 100% of the minority class.
148
148
recipe(~ . , example_data ) %> %
149
149
step_downsample(class , under_ratio = 1 ) %> %
150
150
prep() %> %
151
- juice( ) %> %
151
+ bake( new_data = NULL ) %> %
152
152
ggplot(aes(class )) +
153
153
geom_bar()
154
154
```
@@ -163,7 +163,7 @@ samples of the minority.
163
163
recipe(~ . , example_data ) %> %
164
164
step_downsample(class , under_ratio = 2 ) %> %
165
165
prep() %> %
166
- juice( ) %> %
166
+ bake( new_data = NULL ) %> %
167
167
ggplot(aes(class )) +
168
168
geom_bar()
169
169
```
0 commit comments