Skip to main content

Apportionment of representatives in U.S. House of Representatives.

Project description

House of representatives apportionments

houseofreps implements apportionment methods for assigning seats in the US House of Representatives.

Disclaimer: This product uses the Census Bureau Data API but is not endorsed or certified by the Census Bureau. See Terms of Service.

Years supported:

1960, 1970, 1980, 1990, 2000, 2010, 2020

A detailed explanation of the current house seat apportionment algorithm can be found here: https://www.census.gov/topics/public-sector/congressional-apportionment/about/computing.html.

Data source

The data source is from https://www.census.gov and is completely described in the data folder.

Installation

Install the Python package:

pip install houseofreps

You can validate that it worked by downloading the example/example.py script:

python example.py

Some examples are forthcoming.

Local installation: clone the repo, then:

pip install -r requirements.txt
pip install -e .

Tests

Tests are implemented for pytest. In the tests folder run:

pytest

Discussion

It's fascinating to understand how seats in the US House of Representatives are assigned. Before this project, I had never thought about this problem:

  • The US Senate consists of two senators for every US state - this is straightforward.
  • The US House of representatives has members assigned based on the state's population. This leads to an immediate problem: the fraction of people residing in each state doesn't lead to an integer assignment of seats!

What can we do?

  • Fractional voting - assign each state a fractional vote. With modern technology, this actually seems like the more reasonable approach. However, this is not how the US House of Representatives is currently assigned.
  • An algorithm that assigns members to each state. For every state, a choice must be made - is the number of seats rounded up or rounded down? Either way, some state has to pay the price and receive less seats.

A detailed explanation of the current house seat apportionment algorithm can be found here: https://www.census.gov/topics/public-sector/congressional-apportionment/about/computing.html. Every 10 years, the number of seats is assigned based on the latest census data (most recently: 2020).

For completeness, the description of algorithm is copied here from https://www.census.gov/topics/public-sector/congressional-apportionment/about/computing.html, with some comments:

The method assigns seats in the House of Representatives according to a "priority" value. The priority value is determined by multiplying the population of a state by a "multiplier."

Let P represent a state's total population. This already has questions, particularly regarding overseas service members, who excluded from the population counts in 1980 following the Vietnam war.

All states start by receiving 1 seat. A state cannot receive less than one seat.

Next, let n represent the number of seats a state would have if it gained a seat (because all states automatically received one seat the next seat gained is "seat two," and the next "seat three," and the next "seat four," and so on.)

Now define the multiplier:

1/sqrt(n*(n-1))

[which is called the reciprocal of the geometric mean].

Thus the formula for calculating the multiplier for the second seat is:

1 / sqrt(2(2-1)) ~ 1/1.414213562 ~ 0.70710678

and the third seat is

1 / sqrt(3(3-1)) ~ 1/2.449489743 ~ 0.40824829

Once the "multipliers" have been calculated, the next step is to multiply this figure by the population total for each of the 50 states (the District of Columbia is not included in these calculations). The resulting numbers are the priority values.

Once you've calculated priority values for the total number of potential seats for each state, the next step is to rank and assign seat numbers to the resulting priority values starting with seat 51, until all 435 seats have been assigned (remember, each state automatically received one seat). Next, tally the number of seats for each state to arrive at the total number of seats in the House of Representatives apportioned to each state.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

houseofreps-0.1.1.tar.gz (28.5 kB view hashes)

Uploaded Source

Built Distribution

houseofreps-0.1.1-py3-none-any.whl (25.4 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page