Homogenous Precinct Analyses

Ray Block Jr., Penn State University

Winter 2021

Overview

Each “analysis” lesson will be about a specific technique.

Today’s lesson is about a type of analysis that explores whether there is a relationship between municipality characteristics and voting patterns. Specifically, we discuss:

  1. the (math-based) logic of Homogenous Precinct analyses

  2. an example (using Lisa Handley’s dataset)

  3. a replication (and extension) in RStudio

  4. how to interpret the results of these analyses

1. The (Math-Based) Logic of Homogenous Precinct Analyses

The (math-based) logic

Set of methods for testing the relationship between municipality characteristics and voting patterns

Compares voting patterns between:

  • homogeneous precincts (e.g., those with a high concentration of a particular racial/ethnic group)

  • non-homogenous precincts (for the same group)

The (math-based) logic

  • If, for example, there is a precinct composed entirely of minority voters,

  • and if the voters within that precinct give most of their votes to a particular candidate,

  • then we can conclude that most minority voters support (i.e., prefer) that candidate

The (math-based) logic

How homogenous do precincts need to be?

  • The problem: precincts are usually not exclusively one race/ethnicity

  • A (not “the”) solution: for analysis purposes, precincts that are \(\geq\) 90% minority are considered “homogeneous”

But your homogeneity thresholds might (have to) differ!

The (math-based) logic

The goal is to say that a contest is racially polarized because

  • an overwhelming majority of minority voters preferred one candidate, and/or

  • an overwhelming majority of White voters preferred a different candidate.

    • How do we know? Because these were the prevailing patterns in homogenous precincts.

2. An example (using sample data from Lisa Handley’s dataset)

An Example (using Handley’s Data)

An Example (using Handley’s Data)

Results for precincts that are \(\geq\) 90% Black

An Example (using Handley’s Data)

For \(\geq\) 90% White precincts (i.e., 100% – Black VAP)

An Example (using Handley’s Data)

If we combine results from the previous tables…

An Example (using Handley’s Data)

Based on these analyses…

  • This contest is racially polarized

How do we know? Because…

  • an overwhelming majority of voters in mostly Black precincts (94.9%) preferred candidate A

  • while the vast majority of voters in mostly White precincts (86.5%) supported candidate B.

3. Replicating (and Extending) the Homogenous Precinct Analysis in RStudio

Replication & extension in RStudio

Replication & extension in RStudio

Importing the data…

  • Install the readr package and load it to your “library”

  • Find the “PracticeData.csv” file (specify path)

  • Use the “read_csv” command to translate the file into R

  • Put R version of data into a new “object” (“my_data”)

Replication & extension in RStudio

Generating and recoding variables

  • Install the dplyr package and load it to your “library”

Replication & extension in RStudio

Use dplyr’s “mutate” and “ifelse” commands to do the percentage and homogenous precinct variables

  • Put the re-coded version of the data into a new “object” (called “my_recodes” here). Use this from now on.

Replication & extension in RStudio

Here is a quick a glance at the revised data (with recodes)

Replication & extension in RStudio

Use the “filter” command (in dplyr) to sort through the data

  • precincts that are homogenously Black

Replication & extension in RStudio

Use the “filter” command (in dplyr) to sort through the data

  • precincts that are homogenously White

Replication & extension in RStudio

Check for polarization using the following hypotheses:

  • H0: \(\bar{Y}\)(homogenous) \(=\) \(\bar{Y}\)(non-homogenous)

  • H1: \(\bar{Y}\)(homogenous) \(\neq\) \(\bar{Y}\)(non-homogenous)

where \(\bar{Y}\) represents a racial/ethnic group’s vote share (e.g., support for candidate A vs. candidate B), sorted by precinct type (e.g., homogenous vs. otherwise)

Replication & extension in RStudio

Evaluating the hypotheses using t-tests

Replication & extension in RStudio

Evaluating the hypotheses using t-tests

Replication & extension in RStudio

Data visualization (i.e., showing the results graphically)

  • Note: I used the above code to create all the graphs (subbing out the precinct-type and candidate-votes variables)

Replication & extension in RStudio

…in plain English (add a table explaining what the code does, line by line)

Replication & extension in RStudio

Clear evidence of polarization (when comparing vote choice in homogenously Black precincts to other precincts)

Replication & extension in RStudio

Qualified evidence of polarization (when comparing vote choice in homogenously White precincts to other precincts)

4. Interpreting Results from Homogenous Precinct Analysis

Interpreting the results

Recall that,

  • H0: \(\bar{Y}\)(homogenous) \(=\) \(\bar{Y}\)(non-homogenous)

  • H1: \(\bar{Y}\)(homogenous) \(\neq\) \(\bar{Y}\)(non-homogenous)

…where \(\bar{Y}\) represents a racial/ethnic group’s vote share (e.g., support for candidate A vs. candidate B), sorted by precinct type (e.g., homogenous vs. otherwise)

We have sufficient evidence to reject H0

Interpreting the results

If voting is polarized

  • If polarization is statistically significant and minority voters are sufficiently concentrated, the state must create district(s) that provide minority voters with an opportunity to elect candidates of choice.

  • In this example, we evaluated the degree to which voting patterns are polarized in the Handley data.

  • More generally, my goal was to show how you can assess the “fairness” of proposed districts using the results from RPV analysis.

Interpreting the results

Limitations of Homogeneous Precinct Analysis

  • Problematic threshold: In many jurisdictions there are no precincts that can be classified as homogeneous (based on the strict 90% cutoff point).

  • Limited information: Homogeneous precincts are often only a small, possibly unrepresentative, sample of the population.

    • Details about voters in more racially/ ethnically diverse areas not always incorporated into the analyses.

References (FYI)

Handley, Lisa. Vote Dilution: Measuring Voting Patterns by Race/Ethnicity.” Presentation delivered at the National Conference of State Legislatures.

SCOTUS Blog. 2020. Section 2 of the Voting Rights Act: Vote Dilution and Vote Deprivation.