The vote column in the dataset has a number that represents that country's vote:
-
1 = Yes
-
2 = Abstain
-
3 = No
-
8 = Not present
-
9 = Not a member
# Filter for votes that are "yes", "abstain", or "no"
votes %>%
filter(vote <=3)
What if I use:
# Filter for votes that are "yes", "abstain", or "no"
votes %>%
filter(vote == c(1,2,3))
A different result. What's this?