Minor typo (#1225)

Update the number of packages from outside the tidyverse.
Add description of wakefield.
This commit is contained in:
Rohan Alexander 2023-01-10 14:48:05 -05:00 committed by GitHub
parent b2c822cb74
commit 4ff400ff60
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -213,7 +213,7 @@ This doesn't make them better or worse, just different.
In other words, the complement to the tidyverse is not the messyverse but many other universes of interrelated packages.
As you tackle more data science projects with R, you'll learn new packages and new ways of thinking about data.
In this book, we'll use three data packages from outside the tidyverse:
In this book, we'll use five data packages from outside the tidyverse:
```{r}
#| eval: false
@ -221,7 +221,7 @@ In this book, we'll use three data packages from outside the tidyverse:
install.packages(c("gapminder", "Lahman", "nycflights13", "palmerpenguins", "wakefield"))
```
These packages provide data on world development, baseball, airline flights, and body measurements of penguins that we'll use to illustrate key data science ideas.
These packages provide data on world development, baseball, airline flights, and body measurements of penguins that we'll use to illustrate key data science ideas, while the final one helps generate random data sets.
## Running R code