From f6b283c43f119cb5d99c75891bdbb9cb539a3344 Mon Sep 17 00:00:00 2001 From: Catalina Vallejos Date: Thu, 5 Oct 2023 16:16:35 +0100 Subject: [PATCH] Fixes title for training/testing data diagram --- _episodes_rmd/03-regression-regularisation.Rmd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_episodes_rmd/03-regression-regularisation.Rmd b/_episodes_rmd/03-regression-regularisation.Rmd index 5eb104a2..c4788d46 100644 --- a/_episodes_rmd/03-regression-regularisation.Rmd +++ b/_episodes_rmd/03-regression-regularisation.Rmd @@ -324,7 +324,7 @@ To get an idea of how well our model generalises, we can split the data into two - a "training" and a "test" set. We use the "training" data to fit the model, and then see its performance on the "test" data. -```{r validation, echo = FALSE, out.width = "500px", fig.cap = "Title", fig.alt = "Alt"} +```{r validation, echo = FALSE, out.width = "500px", fig.cap = "Schematic representation of how a dataset can be divided into a training and a test set.", fig.alt = "Schematic representation of how a dataset can be divided into a training (the portion of the data used to fit a model) and a test set (the portion of the data used to assess external generalisability)."} knitr::include_graphics("../fig/validation.png") ```