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
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file houseofreps-0.1.1.tar.gz
.
File metadata
- Download URL: houseofreps-0.1.1.tar.gz
- Upload date:
- Size: 28.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7baadddd72452dc37b4121d26082c02af7cdff69801a8f9fbf4d1ed294e13103 |
|
MD5 | 23478c94d71d6e561489fb45ff8dcb4c |
|
BLAKE2b-256 | b68122d3b89168d2ea4854e6009f2773dc8595cbf749378745a6f1a456c1c40a |
File details
Details for the file houseofreps-0.1.1-py3-none-any.whl
.
File metadata
- Download URL: houseofreps-0.1.1-py3-none-any.whl
- Upload date:
- Size: 25.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ad775941b0f93df895533b86bf95c1c876b252aba76bd6ae9b41b4123a5495aa |
|
MD5 | f41ce6d972018c75bcf80d81518a9d54 |
|
BLAKE2b-256 | 5126b70ea599c64d7cbf6aa9bbc4133be991d64b55b9c3e307cfe7091091dde4 |