Fix variable name
This commit is contained in:
parent
4f60f5eb74
commit
0b1dd9321b
|
@ -161,7 +161,7 @@ flights2 %>%
|
||||||
left_join(airlines, by = "carrier")
|
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}
|
```{r}
|
||||||
flights2 %>%
|
flights2 %>%
|
||||||
|
|
Loading…
Reference in New Issue