Skip to content

Commit

Permalink
Fix some more typos (tidymodels#313)
Browse files Browse the repository at this point in the history
* Fix typo. Closes tidymodels#308.

* Fix typo. Closes tidymodels#310.

* Fix grammar. Closes tidymodels#312.
  • Loading branch information
juliasilge authored May 31, 2022
1 parent 59ac57b commit f751ddb
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion 08-feature-engineering.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -484,7 +484,7 @@ The `tidy()` method, when called with the recipe object, gives a summary of the
tidy(ames_rec)
```

This result can be helpful for identifying individual steps, perhaps to then be able to execute the `tidy()` method on one specific steps.
This result can be helpful for identifying individual steps, perhaps to then be able to execute the `tidy()` method on one specific step.

We can specify the `id` argument in any step function call; otherwise it is generated using a random suffix. Setting this value can be helpful if the same type of step is added to the recipe more than once. Let's specify the `id` ahead of time for `step_other()`, since we'll want to `tidy()` it:

Expand Down
2 changes: 1 addition & 1 deletion 11-comparing-models.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ where

* $\beta_1$ is the change in mean $R^2$ when interactions are added to the basic linear model,

* $\beta_2$ is the change in mean $R^2$ between the basic linear model and the random forest model.
* $\beta_2$ is the change in mean $R^2$ between the basic linear model and the random forest model, and

* $\beta_3$ is the change in mean $R^2$ between the basic linear model and one with interactions and splines.

Expand Down
2 changes: 1 addition & 1 deletion 15-workflow-sets.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ no_pre_proc <-
no_pre_proc
```

Finally, the set that uses nonlinear terms and interactions with the appropriate models are assembled:
Finally, we assemble the set that uses nonlinear terms and interactions with the appropriate models:

```{r workflow-sets-quad}
with_features <-
Expand Down

0 comments on commit f751ddb

Please sign in to comment.