From 9de102473e83eafb213aa633a5349dca5db5bc25 Mon Sep 17 00:00:00 2001 From: Jonathan Kitt Date: Wed, 30 Nov 2022 13:15:19 +0100 Subject: [PATCH] Update intro.qmd (#1165) Removed a redundant use of "packages" in the text. --- intro.qmd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/intro.qmd b/intro.qmd index a018aff..423a680 100644 --- a/intro.qmd +++ b/intro.qmd @@ -202,7 +202,7 @@ Once you have installed a package, you can load it using the `library()` functio library(tidyverse) ``` -This tells you that tidyverse is loading eight packages: ggplot2, tibble, tidyr, readr, purrr, dplyr, stringr, and forcats packages. +This tells you that tidyverse is loading eight packages: ggplot2, tibble, tidyr, readr, purrr, dplyr, stringr, and forcats. These are considered to be the **core** of the tidyverse because you'll use them in almost every analysis. Packages in the tidyverse change fairly frequently.