ComeçarComece de graça

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.

Este exercício faz parte do curso

Inference for Categorical Data in R

Ver curso

Exercício interativo prático

Experimente este exercício completando este código de exemplo.

# 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
Editar e executar o código