Guest User

Untitled

a guest
Jun 18th, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. df %>%
  2. group_by(year, continent) %>%
  3. summarise(ttl_pop = sum(as.numeric(pop))) %>% # integer 會溢位,轉換為 numeric
  4. tail(10)
Add Comment
Please, Sign In to add comment