From 3ff6b6916b79eb476bcd82b26a2094e4c3fc8d4b Mon Sep 17 00:00:00 2001 From: Andrzej Romaniuk <49647768+AndrzejRomaniuk@users.noreply.github.com> Date: Thu, 4 Jan 2024 20:00:17 +0100 Subject: [PATCH 1/2] Update lubridate.Rmd --- episodes/02-starting-with-data.Rmd | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/episodes/02-starting-with-data.Rmd b/episodes/02-starting-with-data.Rmd index f5d0f0ba..32e1b74c 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 (before 2023), 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) From c0dd92fc19587d9c927d477e93538953db40c7d8 Mon Sep 17 00:00:00 2001 From: Andrzej Romaniuk <49647768+AndrzejRomaniuk@users.noreply.github.com> Date: Thu, 4 Jan 2024 20:03:35 +0100 Subject: [PATCH 2/2] Update 02-starting-with-data.Rmd --- episodes/02-starting-with-data.Rmd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/episodes/02-starting-with-data.Rmd b/episodes/02-starting-with-data.Rmd index 32e1b74c..81f639fa 100644 --- a/episodes/02-starting-with-data.Rmd +++ b/episodes/02-starting-with-data.Rmd @@ -605,7 +605,7 @@ str(interviews) ``` 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 (before 2023), we can manually load it by typing `library(lubridate)`. +However, if we deal with older versions of tidyverse (2022 and ealier), we can manually load it by typing `library(lubridate)`. If necessary, start by loading the required package: