Announcements

ggplot(data=voter_data, aes(x=year, y=percent_turnout, col=demographic)) +
    geom_line() +
    geom_point()

In-Class

  • Slides:
    • %>% pipe operator, pronounced then
    • summarise() observations that have been group_by() another variable.
  • Note about dplyr cheatsheet
  • Section 5.1.3 of textbook

After-Class Updates