Skip to content

Commit cd86369

Browse files
committed
rebuild readme
1 parent ae04125 commit cd86369

6 files changed

+7
-7
lines changed

README.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ maturing](https://img.shields.io/badge/lifecycle-maturing-blue.svg)](https://www
1818

1919
**themis** contain extra steps for the
2020
[`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
2323
god](https://thishollowearth.wordpress.com/2012/07/02/god-of-the-week-themis/)
2424
who is typically depicted with a balance.
2525

@@ -64,7 +64,7 @@ ds_rec <- recipe(Class ~ age + height, data = okc) %>%
6464
step_smote(Class) %>%
6565
prep()
6666

67-
sort(table(juice(ds_rec)$Class, useNA = "always"))
67+
sort(table(bake(ds_rec, new_data = NULL)$Class, useNA = "always"))
6868
#>
6969
#> <NA> stem other
7070
#> 0 50316 50316
@@ -108,7 +108,7 @@ minority classes equal to 100% of the majority class.
108108
recipe(~., example_data) %>%
109109
step_upsample(class, over_ratio = 1) %>%
110110
prep() %>%
111-
juice() %>%
111+
bake(new_data = NULL) %>%
112112
ggplot(aes(class)) +
113113
geom_bar()
114114
```
@@ -122,7 +122,7 @@ less samples then 50% of the majority up to have 50% of the majority.
122122
recipe(~., example_data) %>%
123123
step_upsample(class, over_ratio = 0.5) %>%
124124
prep() %>%
125-
juice() %>%
125+
bake(new_data = NULL) %>%
126126
ggplot(aes(class)) +
127127
geom_bar()
128128
```
@@ -148,7 +148,7 @@ majority classes equal to 100% of the minority class.
148148
recipe(~., example_data) %>%
149149
step_downsample(class, under_ratio = 1) %>%
150150
prep() %>%
151-
juice() %>%
151+
bake(new_data = NULL) %>%
152152
ggplot(aes(class)) +
153153
geom_bar()
154154
```
@@ -163,7 +163,7 @@ samples of the minority.
163163
recipe(~., example_data) %>%
164164
step_downsample(class, under_ratio = 2) %>%
165165
prep() %>%
166-
juice() %>%
166+
bake(new_data = NULL) %>%
167167
ggplot(aes(class)) +
168168
geom_bar()
169169
```
68 Bytes
Loading
68 Bytes
Loading
68 Bytes
Loading
68 Bytes
Loading
68 Bytes
Loading

0 commit comments

Comments
 (0)