Use dev tidyverse (#1240)

* lubridate is now core
* briefly mention conflicted

Fixes #1105
This commit is contained in:
Hadley Wickham
2023-01-23 07:48:36 -06:00
committed by GitHub
parent a3b40d8dd8
commit d3a9919967
5 changed files with 17 additions and 15 deletions

View File

@@ -200,7 +200,7 @@ Once you have installed a package, you can load it using the `library()` functio
library(tidyverse)
```
This tells you that tidyverse loads eight packages: ggplot2, tibble, tidyr, readr, purrr, dplyr, stringr, and forcats.
This tells you that tidyverse loads nine packages: dplyr, forcats, ggplot2, lubridate, purrr, readr, stringr, tibble, tidyr.
These are considered the **core** of the tidyverse because you'll use them in almost every analysis.
Packages in the tidyverse change fairly frequently.