Created
November 13, 2019 00:11
-
-
Save EvaMaeRey/849827234ce5e3aa1d5f71922add0858 to your computer and use it in GitHub Desktop.
for RLadies Denver
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| library(tidyverse) | |
| library(gapminder) | |
| gapminder %>% # data from package | |
| filter(year == 2002) -> # filtering | |
| gapminder_2002 # saving subset object | |
| gapminder_2002 %>% | |
| filter(continent == "Europe") -> | |
| gapminder_2002_europe | |
| gapminder %>% | |
| select(country, continent) %>% | |
| distinct() %>% | |
| group_by(continent) %>% | |
| summarise(country_count = n()) -> | |
| continent_aggregate |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment