Extracting the first digit II
There are different levels at which we could consider looking at vote totals. We could look at precincts, or counties, or states, and each level might give us a slightly different picture of what's going on.
For this analysis, look at totals at the county level in Iowa and focus on the votes for the two major party candidates: Republicans Trump / Pence and Democrats Clinton / Kaine.
Diese Übung ist Teil des Kurses
Inference for Categorical Data in R
Interaktive Übung
Vervollständige den Beispielcode, um diese Übung erfolgreich abzuschließen.
# Get Iowa county vote totals
iowa_county <- ___ %>%
# Filter for rep/dem
___(candidate %in% c(___, ___)) %>%
# Group by county
___
# Compute total votes in each county
___(dem_rep_votes = ___)
# See the result
iowa_county