Skip to content

Commit

Permalink
Fix variable name
Browse files Browse the repository at this point in the history
  • Loading branch information
hadley committed Apr 22, 2016
1 parent 4f60f5e commit 0b1dd93
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion relational-data.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 161,7 @@ flights2 %>%
left_join(airlines, by = "carrier")
```

The result of joining airlines to flights is an additional variable: `carrier`. This is why I call this type of join a mutating join. In this case, you could have got to the same place using `mutate()` and basic subsetting:
The result of joining airlines to flights is an additional variable: `name`. This is why I call this type of join a mutating join. In this case, you could have got to the same place using `mutate()` and basic subsetting:

```{r}
flights2 %>%
Expand Down

0 comments on commit 0b1dd93

Please sign in to comment.