Tibble is always attached now

This commit is contained in:
hadley
2016-10-03 14:10:05 -05:00
parent c989bae1a6
commit 30509621cf
10 changed files with 32 additions and 32 deletions

View File

@@ -625,7 +625,7 @@ When I plot the skill of the batter (measured by the batting average, `ba`) agai
```{r}
# Convert to a tibble so it prints nicely
batting <- tibble::as_tibble(Lahman::Batting)
batting <- as_tibble(Lahman::Batting)
batters <- batting %>%
group_by(playerID) %>%