Skip to main content

Voter Satisfaction Efficiency simulation tools for voting systems.

Project description

VSE Sim

VSE Sim provides Python tools for running Voter Satisfaction Efficiency (VSE) simulations for voting methods.

The package is published as vse-sim and imports as vse_sim. The original top-level modules, such as vse and voterModels, are still installed for older scripts and examples.

For background on the metric and published simulation results, see the Voter Satisfaction Efficiency FAQ.

Install

Install the released package from PyPI:

python -m pip install vse-sim

In a notebook, use %pip so the package is installed into the active kernel:

%pip install vse-sim

For reproducible notebooks or environments, pin a released version:

python -m pip install "vse-sim==0.1.2"

To install the latest code from GitHub instead of PyPI:

python -m pip install "vse-sim @ git+https://github.com/wclark/vse-sim.git@main"

Basic Usage

Prefer the modern vse_sim namespace for new code:

import vse_sim as vse
from vse_sim import Mav, PolyaModel, Score, baseRuns, medianRuns
from vse_sim.debug_dump import setDebug

setDebug(False)

results = vse.run_simulation(
    PolyaModel(),
    [[Score(), baseRuns], [Mav(), medianRuns]],
    nvot=5,
    ncand=4,
    niter=3,
    seed="quickstart",
)

results.df.head()

Work with results using pandas-native helpers and DataFrame aliases:

frame = results.dataframe
summary = results.summarize(group_by="method")
leaderboard = results.leaderboard()
report_tables = results.report()
axes = results.plot_vse(group_by="method", kind="barh")

Use the convenience helpers when you want DataFrames directly:

frame = vse.run_simulation_dataframe(
    PolyaModel(),
    [[Score(), baseRuns]],
    nvot=5,
    ncand=4,
    niter=3,
    seed="quickstart-frame",
)

voters = PolyaModel()(5, 4)
voter_utilities = voters.to_dataframe(wide=True)
ballots = Score().ballots_dataframe(voters)
scores = Score().results_dataframe(ballots)

For notebook work, the recommended starting point is the copy-paste template in Jupyter notebook template. It has one setup cell with imports, reusable report helpers, and plotting functions, followed by a larger simulation/reporting cell that produces summary tables, a heatmap, distribution plots, and method-level scoring tables.

CsvBatch remains available when you want the legacy batch object or metadata CSV writer:

from vse_sim import CsvBatch

csvs = CsvBatch(
    PolyaModel(),
    [[Score(), baseRuns], [Mav(), medianRuns]],
    nvot=5,
    ncand=4,
    niter=3,
    seed="quickstart",
)
csvs.saveFile("quickstart-results")

Legacy imports remain supported:

from vse import CsvBatch
from voterModels import PolyaModel

See Installation and notebook usage for environment setup, including GitHub installs and notebook workflow notes.

Development

Create or activate a Python 3.10+ environment, then install the project in editable mode with development tools:

python -m pip install -e ".[dev,publish]"

Install local Git hooks if you want pre-commit checks:

pre-commit install

Run the default local quality gate:

nox

The default Nox gate validates metadata, runs Ruff format/lint checks, runs the Python 3.10 test and coverage suite, builds the package, validates distribution metadata and wheel contents, and audits dependencies.

Run Python 3.12 tests explicitly when that interpreter is available:

nox -s tests-3.12

Useful direct commands:

python -m pytest --doctest-modules --cov=. --cov-fail-under=100
python -m ruff format --check .
python -m ruff check .
python -m build
python -m twine check dist/*
check-wheel-contents dist/*.whl
python -m pip_audit --skip-editable --progress-spinner off .

Coverage reports are written to htmlcov/, coverage.xml, and pytest-results.xml when the full coverage command is run.

Repository Layout

  • vse_sim/: modern package facade for new imports.
  • Root Python modules: legacy-compatible modules that remain importable.
  • test/: coverage and compatibility tests.
  • data/: retained legacy/reference data artifacts.
  • docs/: GitHub Pages content plus install and release notes.

See Release process for the PyPI publishing workflow.

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

vse_sim-0.1.2.tar.gz (52.7 kB view details)

Uploaded Source

Built Distribution

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

vse_sim-0.1.2-py3-none-any.whl (39.9 kB view details)

Uploaded Python 3

File details

Details for the file vse_sim-0.1.2.tar.gz.

File metadata

  • Download URL: vse_sim-0.1.2.tar.gz
  • Upload date:
  • Size: 52.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for vse_sim-0.1.2.tar.gz
Algorithm Hash digest
SHA256 bb9a679be8e94e4af351db2a3d8b5b9c14b431d4c84e853d4d555ba5b57d1c28
MD5 f1201fe6382055317bd52aaad1d2ce12
BLAKE2b-256 fb2a463b584f665f9d194ae0f2ecf3b5309cac4950e751cab659747521063d32

See more details on using hashes here.

Provenance

The following attestation bundles were made for vse_sim-0.1.2.tar.gz:

Publisher: python-publish.yml on wclark/vse-sim

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file vse_sim-0.1.2-py3-none-any.whl.

File metadata

  • Download URL: vse_sim-0.1.2-py3-none-any.whl
  • Upload date:
  • Size: 39.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for vse_sim-0.1.2-py3-none-any.whl
Algorithm Hash digest
SHA256 a30078c0339de04df87c5159092098600a8a475baf9479568c8c45e7b565c2dc
MD5 299e535fd7f55773c8ca415f03d032f1
BLAKE2b-256 51ca41f98c588ee9ec6241010d1a2501eb2e5fad2bd5f035ad453642fc34ad2c

See more details on using hashes here.

Provenance

The following attestation bundles were made for vse_sim-0.1.2-py3-none-any.whl:

Publisher: python-publish.yml on wclark/vse-sim

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

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