Session Ready
Exercise

Combining models for multiple countries

One important advantage of changing models to tidied data frames is that they can be combined.

In an earlier section, you fit a linear model to the percentage of "yes" votes for each year in the United States. Now you'll fit the same model for the United Kingdom and combine the results from both countries.

Instructions
100 XP
  • Fit a model for the United Kingdom similar to the one you fit for the US and save it as UK_fit.
  • Tidy US_fit into a data frame called US_tidied and the UK model into UK_tidied.
  • Use bind_rows() from dplyr to combine the two tidied models, printing the result to the console.