Skip to content

Latest commit

 

History

History
27 lines (16 loc) · 1.47 KB

plot.rst

File metadata and controls

27 lines (16 loc) · 1.47 KB

plot

The :py:mod:`plot` module provides users with Python only implementations of common electoral plots.

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).

Functions

.. autofunction:: poli_sci_kit.plot.dispr_bar

poli_sci_kit also provides Python only implementations of both rectangular and semicircle parliament plots:

.. autofunction:: poli_sci_kit.plot.parliament

The parliament plot function is built on top of scatter plots that are derived in the package's utils module:

.. autofunction:: poli_sci_kit.utils.gen_parl_points

A final function to swap poorly allocated seats is also provided in utils:

.. autofunction:: poli_sci_kit.utils.swap_parl_allocations