Skip to content

Commit

Permalink
Merge pull request #502 from AndrzejRomaniuk/main
Browse files Browse the repository at this point in the history
Lubridate - from 2023 integral part of Tidyverse
  • Loading branch information
juanfung committed Jan 4, 2024
2 parents 27980b5 + c0dd92f commit 375d66d
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions episodes/02-starting-with-data.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 375d66d

Please sign in to comment.