Fix variable name
This commit is contained in:
		@@ -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 %>%
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user