CommencerCommencer gratuitement

Summarize by country, year, and topic

In previous exercises, you summarized the votes dataset by country, by year, and by country-year combination.

Now that you have topic as an additional variable, you can summarize the votes for each combination of country, year, and topic (e.g. for the United States in 2013 on the topic of nuclear weapons.)

Cet exercice fait partie du cours

Case Study: Exploratory Data Analysis in R

Afficher le cours

Instructions

  • Print the votes_tidied dataset to the console.
  • In a single summarize() call, compute both the total number of votes (total) and the percentage of "yes" votes (percent_yes) for each combination of country, year, and topic. Save this as by_country_year_topic. Make sure that you ungroup() after summarizing.
  • Print the by_country_year_topic dataset to the console.

Exercice interactif pratique

Essayez cet exercice en complétant cet exemple de code.

# Print votes_tidied


# Summarize the percentage "yes" per country-year-topic


# Print by_country_year_topic
Modifier et exécuter le code