un_votes %>%
filter(un_votes > 5, issue == "Human rights")
un_votes %>% filter(un_votes > 5, issue == "Human rights")
un_votes %>%
filter(un_votes > 5,
issue == "Human rights")
un_votes %>% filter(un_votes>5,issue=="Human rights")
un_votes %>%
filter(un_votes > 5, issue == "Human rights")
un_votes %>%
filter(
un_votes > 5,
issue == "Human rights"
)