Fix typos (#421)

* Fix typos

* Fix typos
This commit is contained in:
behrman 2016-10-03 05:16:11 -07:00 committed by Hadley Wickham
parent f023ef409e
commit 8e84a7890f
2 changed files with 2 additions and 2 deletions

View File

@ -16,7 +16,7 @@ library(tibble)
## Creating tibbles {#tibbles}
Almost all of the functions that you'll use in this book produce tibbles as tibbles are one of the unifying features of the tidyverse. Most other R packages use regular data frames, so you might want to coerce a data frame to a tibble. You can do that with `as_tibble()`:
Almost all of the functions that you'll use in this book produce tibbles, as tibbles are one of the unifying features of the tidyverse. Most other R packages use regular data frames, so you might want to coerce a data frame to a tibble. You can do that with `as_tibble()`:
```{r}
as_tibble(iris)

View File

@ -23,7 +23,7 @@ This part of the book proceeds as follows:
You'll learn the underlying principles, and how to get your data into a
tidy form.
Data wrangling also encompasses data transformation, which you've already learn a little about. Now we'll focus on new skills for three specific types of data you will frequently encounter in practice:
Data wrangling also encompasses data transformation, which you've already learned a little about. Now we'll focus on new skills for three specific types of data you will frequently encounter in practice:
* [Relational data] will give you tools for working with multiple
interrelated datasets.