Skip to content

Instantly share code, notes, and snippets.

@baskaufs
Created September 25, 2020 19:01
Show Gist options
  • Save baskaufs/d7884552b9a16264e18f4bf87d575995 to your computer and use it in GitHub Desktop.
Save baskaufs/d7884552b9a16264e18f4bf87d575995 to your computer and use it in GitHub Desktop.
stripped down hw example
# question 6
url3 <- "https://gist.githubusercontent.com/baskaufs/510972a23e3153edc133e33a2fcdf3d1/raw/ce8d6f160d5716b418a9874c22e614d95946a9be/wv_5_women_and_development.csv"
hw_table2 <- read.csv(url3,na.strings="..")
mentions_gender <- hw_table2$nondiscrimination_clause_mentions_gender_in_the_constitution[1:217]
women_20to24 <- hw_table2$percentage_of_women_ages_20.24_first.married_by_age_18[1:217]
plot(women_20to24 ~ mentions_gender)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment