diff --git a/episodes/02-starting-with-data.Rmd b/episodes/02-starting-with-data.Rmd index f5d0f0ba..81f639fa 100644 --- a/episodes/02-starting-with-data.Rmd +++ b/episodes/02-starting-with-data.Rmd @@ -604,11 +604,10 @@ convert those dates into three separate columns. str(interviews) ``` -We are going to use the package **`lubridate`**, which is included in the -**`tidyverse`** installation but not loaded by default, so we have to load -it explicitly with `library(lubridate)`. +We are going to use the package **`lubridate`**, , which is included in the **`tidyverse`** installation and should be loaded by default. +However, if we deal with older versions of tidyverse (2022 and ealier), we can manually load it by typing `library(lubridate)`. -Start by loading the required package: +If necessary, start by loading the required package: ```{r load-package, message=FALSE, purl=FALSE} library(lubridate)