From f212f77f7fb469f1efd31cf6ce0c2b7e7564e514 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Metehan=20G=C3=9CNG=C3=96R?= <102655648+gungorMetehan@users.noreply.github.com> Date: Tue, 9 Sep 2025 18:11:22 +0300 Subject: [PATCH] Update 15-workflow-sets.Rmd typos. --- 15-workflow-sets.Rmd | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/15-workflow-sets.Rmd b/15-workflow-sets.Rmd index 44a09e5..f787e2f 100644 --- a/15-workflow-sets.Rmd +++ b/15-workflow-sets.Rmd @@ -88,7 +88,7 @@ poly_recipe <- step_interact(~ all_predictors():all_predictors()) ``` -For the models, we use the the `r pkg(parsnip)` addin to create a set of model specifications: +For the models, we use the `r pkg(parsnip)` addin to create a set of model specifications: ```{r workflow-sets-models} library(rules) @@ -334,7 +334,7 @@ autoplot(grid_results, id = "Cubist", metric = "rmse") #| fig.width = 8, #| fig.height = 4.5, #| fig.cap = "The `autoplot()` results for the Cubist model contained in the workflow set.", -#| fig.alt = "The `autoplot()` results for the Cubist model contained in the workflow set. The visalization has a panel for each tuning pameter and shows performance versus the parameter values." +#| fig.alt = "The `autoplot()` results for the Cubist model contained in the workflow set. The visualization has a panel for each tuning parameter and shows performance versus the parameter values." ``` There are also methods for `collect_predictions()` and `collect_metrics()`.