Skip to content

Commit 0808389

Browse files
committed
base pipe requires a function call on the RHS
1 parent bdc89a9 commit 0808389

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

vignettes/Applications/Recipes_and_rsample.Rmd

+1-1
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ Note that there are fewer dummy variables for `Neighborhood` and `House_Style` t
112112
Also, the above code using `prep()` benefits from the default argument of `retain = TRUE`, which keeps the processed version of the data set so that we don't have to reapply the steps to extract the processed values. For the data used to train the recipe, we would have used:
113113

114114
```{r juiced}
115-
bake(rec_training_set, new_data = NULL) |> head
115+
bake(rec_training_set, new_data = NULL) |> head()
116116
```
117117

118118
The next section will explore recipes and bootstrap resampling for modeling:

0 commit comments

Comments
 (0)