Tibble is always attached now

This commit is contained in:
hadley
2016-10-03 16:53:31 -05:00
parent c989bae1a6
commit 30509621cf
10 changed files with 32 additions and 32 deletions
+1 -1
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) %>%