Checking models visually
In the last exercise, you found that over its history, Vanuatu (an island nation in the Pacific Ocean) sharply changed its pattern of voting on the topic of Palestinian conflict.
Let's examine this country's voting patterns more closely. Recall that the by_country_year_topic
dataset contained one row for each combination of country, year, and topic. You can use that to create a plot of Vanuatu's voting, faceted by topic.
Cet exercice fait partie du cours
Case Study: Exploratory Data Analysis in R
Instructions
- Filter the
by_country_year_topic
variable for only Vanuatu's votes to create avanuatu_by_country_year_topic
object. - Create a plot with
year
on the x-axis andpercent_yes
on the y-axis, and facet by topic.
Exercice interactif pratique
Essayez cet exercice en complétant cet exemple de code.
# Create vanuatu_by_country_year_topic
# Plot of percentage "yes" over time, faceted by topic
___(vanuatu_by_country_year_topic, ___) ___
___
___