You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -1339,11 +1342,12 @@ where the elbow occurs, and whether adding a variable provides a meaningful incr
1339
1342
> part of tuning your classifier, you *cannot use your test data* for this
1340
1343
> process!
1341
1344
1342
-
```{r 06-fwdsel-3, echo = FALSE, warning = FALSE, fig.retina = 2, out.width = "75%", fig.cap = "Estimated accuracy versus the number of predictors for the sequence of models built using forward selection."}
1345
+
```{r 06-fwdsel-3, echo = FALSE, warning = FALSE, fig.retina = 2, out.width = "60%", fig.cap = "Estimated accuracy versus the number of predictors for the sequence of models built using forward selection."}
1343
1346
fwd_sel_accuracies_plot <- accuracies |>
1344
1347
ggplot(aes(x = size, y = accuracy)) +
1345
1348
geom_line() +
1346
-
labs(x = "Number of Predictors", y = "Estimated Accuracy")
1349
+
labs(x = "Number of Predictors", y = "Estimated Accuracy") +
0 commit comments