National and local news outlets report the results of the Presidential election at the state and county level, but that doesn’t tell me how my neighborhood voted. For that I’ll need the precinct-by-precinct results, which in my area is not reported. Can I calculate it myself? In R the answer is of course a big YES. Here’s how I did it.
Sometimes it’s nice to compare just among votes case for the “top candidates”, like this:
Code
topCandidates<-c("Donald J. Trump & Michael R. Pence","Gary Johnson & Bill Weld","Jill Stein & Ajamu Baraka","Hillary Clinton & Tim Kaine")mi.president<-mi.president.all %>% dplyr::filter(candidate %in% topCandidates)mi.president.all$candidate<-factor(mi.president$candidate)mi.president.top<-mi.president %>% dplyr::group_by(candidate) %>% dplyr::summarize(sum=sum(sum)) %>% dplyr::arrange(desc(sum)) %>% dplyr::mutate(pct=sum/sum(sum)*100)knitr::kable(mi.president.top,digits=3)