Skip to main content

    rtd ci_static_analysis ci_pytest pyversions pypi pypistatus license coc colab

    Political elections, appointment, analysis and visualization in Python

    poli-sci-kit is a Python package for political science appointment and election analysis. The goal is to provide a comprehensive tool for all methods needed to analyze and simulate election results. See the documentation for a full outline of the package including algorithms and visualization techniques.

    Contents

    Installation

    poli-sci-kit is available for installation via uv (recommended) or pip.

    For Users

    # Using uv (recommended - fast, Rust-based installer):
    uv pip install poli-sci-kit
    
    # Or using pip:
    pip install poli-sci-kit
    

    For Development Build

    git clone https://github.com/andrewtavis/poli-sci-kit.git
    cd poli-sci-kit
    
    # With uv (recommended):
    uv sync --all-groups  # install all dependencies
    source .venv/bin/activate  # activate venv (macOS/Linux)
    # .venv\Scripts\activate  # activate venv (Windows)
    
    # Or with pip:
    python -m venv .venv  # create virtual environment
    source .venv/bin/activate  # activate venv (macOS/Linux)
    # .venv\Scripts\activate  # activate venv (Windows)
    pip install -e .
    
    import poli_sci_kit
    

    Back to top.

    Appointment

    appointment.methods includes functions to allocate parliamentary seats based on population or vote shares. Included methods are:

    Largest Remainder: Hare, Droop, Hagenbach–Bischoff (incl Hamilton, Vinton, Hare–Niemeyer)

    Highest Averages: Jefferson, Webster, Huntington-Hill

    Arguments to allow allocation thresholds, minimum allocations per group, tie break conditions, and other election features are also provided. Along with deriving results for visualization and reporting, these functions allow the user to analyze outcomes given systematic or situational changes. The appointment.metrics module further provides diagnostics to analyze the results of elections, apportionments, and other political science scenarios.

    A basic example of political appointment using poli-sci-kit is:

    from poli_sci_kit import appointment
    
    vote_counts = [2700, 900, 3300, 1300, 2150, 500]
    seats_to_allocate = 50
    
    # Huntington-Hill is the method used to allocate House of Representatives seats to US states.
    ha_allocations = appointment.methods.highest_averages(
        averaging_style="Huntington-Hill",
        shares=vote_counts,
        total_allocation=seats_to_allocate,
        allocation_threshold=None,
        min_alloc=1,
        tie_break="majority",
        majority_bonus=False,
        modifier=None,
    )
    
    ha_allocations
    # [26, 9, 37, 12, 23, 5]
    

    We can then compute various metrics to derive disproportionality:

    # The Gallagher method is a measure of absolute difference similar to summing square residuals.
    disproportionality = appointment.metrics.disproportionality_index(
        shares=vote_counts,
        allocations=ha_allocations,
        metric_type='Gallagher'
    )
    
    disproportionality
    # 0.01002
    

    We can also check that the allocations pass the quota condition:

    passes_qc = appointment.checks.quota_condition(
        shares=vote_counts,
        seats=ha_allocations
    )
    
    passes_qc
    # True
    

    Allocation consistency can further be checked using dataframes of shares and seats given electoral settings. See appointment.checks and the documentation for explanations of method checks.

    Back to top.

    Plotting

    poli-sci-kit provides Python only implementations of common electoral plots.

    Visualizing the above results:

    import matplotlib.pyplot as plt
    import poli_sci_kit
    
    # German political parties.
    parties = ['CDU/CSU', 'FDP', 'Greens', 'Die Linke', 'SPD', 'AfD']
    party_colors = ['#000000', '#ffed00', '#64a12d', '#be3075', '#eb001f', '#009ee0']
    

    Back to top.

    Parliament Plots

    poli_sci_kit provides implementations of both rectangular and semicircle parliament plots:

    fig, (ax1, ax2) = plt.subplots(nrows=1, ncols=2)
    
    ax1 = poli_sci_kit.plot.parliament_plot(
        allocations=seat_allocations,
        labels=parties,
        colors=party_colors,
        style="rectangle",
        num_rows=4,
        marker_size=300,
        speaker=True,
        axis=ax1,
    )
    
    ax2 = poli_sci_kit.plot.parliament_plot(
        allocations=seat_allocations,
        labels=parties,
        colors=party_colors,
        style="semicircle",
        num_rows=4,
        marker_size=175,
        speaker=False,
        axis=ax2,
    )
    
    plt.show()
    

    Back to top.

    Disproportionality Bar Plot

    A novel addition to social science analysis is the disproportionality bar plot, which graphically depicts the disproportionality between expected and realized results. Bar widths are the proportion of shares (ex: votes received), and heights are the difference or relative difference between shares and allocations (ex: parliament seats received).

    An example follows:

    import pltviz
    
    ax = poli_sci_kit.plot.disproportionality_bar_plot(
        shares=votes,
        allocations=ha_allocations,
        labels=parties,
        colors=party_colors,
        total_shares=None,
        total_allocation=None,
        percent=True,
        axis=None,
    )
    
    handles, labels = pltviz.plot.legend.gen_elements(
        counts=[round(v / sum(votes), 4) for v in votes],
        labels=parties,
        colors=party_colors,
        size=11,
        marker="o",
        padding_indexes=None,
        order=None,
    )
    
    ax.legend(
        handles=handles,
        labels=labels,
        title="Vote Percents (bar widths)",
        title_fontsize=15,
        fontsize=11,
        ncol=2,
        loc="upper left",
        bbox_to_anchor=(0, 1),
        frameon=True,
        facecolor="#FFFFFF",
        framealpha=1,
    )
    
    ax.axes.set_title('Seat to Vote Share Disproportionality', fontsize=30)
    ax.set_xlabel('Parties', fontsize=20)
    ax.set_ylabel('Percent Shift', fontsize=20)
    
    plt.show()
    

    Back to top.

    Examples

    Examples in poli-sci-kit use publicly available Wikidata statistics sourced via the Python package wikirepo. Current examples include:

    • US HoR (Open in Colab)

      • Allocates seats to a version of the US House of Representatives that includes all US territories and Washington DC given census data, with this further being used to derive relative vote strengths of state citizens in the US presidential election
    • Global Parliament (Open in Colab)

      • Analyzes the allocation of seats in a hypothetical global parliament given the prevalence of certain countries and organizations, the distribution of seats based on Freedom House indexes, as well as disproportionality metrics

    Back to top.

    Development environment

    Please follow the steps below to set up your development environment for poli-sci-kit contributions.

    Clone repository

    # Clone your fork of the repo into the current directory.
    git clone https://github.com/<your-username>/poli-sci-kit.git
    # Navigate to the newly cloned directory.
    cd poli-sci-kit
    # Assign the original repo to a remote called "upstream".
    git remote add upstream https://github.com/andrewtavis/poli-sci-kit.git
    
    • Now, if you run git remote -v you should see two remote repositories named:
      • origin (forked repository)
      • upstream (poli-sci-kit repository)

    Environment

    Create a virtual environment for poli-sci-kit (Python >=3.12), activate it and install dependencies.

    [!NOTE] First, install uv if you don't already have it by following the official installation guide.

    uv venv

    uv sync --all-groups  # create .venv and install all dependencies from uv.lock
    
    # Unix or macOS:
    source .venv/bin/activate
    
    # Windows:
    .venv\Scripts\activate.bat # .venv\Scripts\activate.ps1 (PowerShell)
    

    Conda

    Download Anaconda if you don't have it installed already.

    conda env create --file environment.yaml
    conda activate poli-sci-kit-dev
    uv pip install -r <(uv export --format requirements-txt)  # install all dependencies from uv.lock
    

    [!NOTE] If you change dependencies in pyproject.toml, regenerate the lock file with the following command:

    uv lock  # refresh uv.lock for reproducible installs
    

    pre-commit

    After activating the virtual environment, set up prek for pre-commit hooks by running:

    # In the project root:
    prek install
    
    # Then test the pre-commit hooks to see how it works:
    uv run prek run --all-files
    

    [!NOTE] If you are having issues with prek and want to send along your changes regardless, you can ignore the pre-commit hooks via the following:

    git commit --no-verify -m "COMMIT_MESSAGE"
    

    Back to top.

    To-Do

    Please see the contribution guidelines if you are interested in contributing to this project. Work that is in progress or could be implemented includes:

    • Adding the Adams method to appointment.methods.highest_averages (see issue)

    • Deriving further needed arguments to assure that all current and historic appointment systems can be simulated using poli-sci-kit (see issue)

    • Potentially indexing preset versions of appointment.methods that coincide with the systems used by governments around the world

      • This would allow quick comparisons of actual systems with variations
    • Adding methods such as quadratic voting to poli-sci-kit to allow for preference based simulations

    • Creating, improving and sharing examples

    Back to top.

    References

    Full list of references

    Back to top.

    Download files

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

    Source Distribution

    poli_sci_kit-2.0.3.tar.gz (32.8 kB view details)

    Uploaded Source

    Built Distribution

    If you're not sure about the file name format, learn more about wheel file names.

    poli_sci_kit-2.0.3-py3-none-any.whl (29.9 kB view details)

    Uploaded Python 3

    File details

    Details for the file poli_sci_kit-2.0.3.tar.gz.

    File metadata

    • Download URL: poli_sci_kit-2.0.3.tar.gz
    • Upload date:
    • Size: 32.8 kB
    • Tags: Source
    • Uploaded using Trusted Publishing? No
    • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"macOS","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

    File hashes

    Hashes for poli_sci_kit-2.0.3.tar.gz
    Algorithm Hash digest
    SHA256 adf58ae2ad3184983bb54ee648186a3150898e7395f24805ffb038975d88254e
    MD5 fee63de7b7966eaa64e8d24c34cf7eb0
    BLAKE2b-256 e0869a699d98eb3c2b9475da192aa105060837f5b9c08976f450973fb8581cb0

    See more details on using hashes here.

    File details

    Details for the file poli_sci_kit-2.0.3-py3-none-any.whl.

    File metadata

    • Download URL: poli_sci_kit-2.0.3-py3-none-any.whl
    • Upload date:
    • Size: 29.9 kB
    • Tags: Python 3
    • Uploaded using Trusted Publishing? No
    • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"macOS","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

    File hashes

    Hashes for poli_sci_kit-2.0.3-py3-none-any.whl
    Algorithm Hash digest
    SHA256 960ae6384a25c0e1a6d228d2d9d90972468fbe6db960a15c11b975bdf66f36b5
    MD5 93996f3bb1c7cb1e70877aa91eb01052
    BLAKE2b-256 20d59945103a4f7b23cefdcb8969afa8ad4c88800b817c214ba5817a78d2322d

    See more details on using hashes here.

    Supported by

    AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page