ces |>
ggplot(aes(year, voted_turnout_self_nona)) +
geom_point(aes(color = "Self-Reported Turnout")) +
scale_x_continuous(breaks = seq(2006, 2020, 2)) +
ylim(c(0, 100))+
labs(x = "Year", y = "Turnout")+
geom_point(aes(year, turnout, color = "True Turnout"))