Metadata-Version: 2.4
Name: pavement
Version: 0.2.0
Summary: Quantile-based pavement plots with matplotlib.
Project-URL: Homepage, https://github.com/ajschumacher/pavement
Author: Aaron Schumacher
License-Expression: MIT
License-File: LICENSE
Requires-Python: >=3.9
Requires-Dist: matplotlib
Provides-Extra: test
Requires-Dist: pytest; extra == 'test'
Description-Content-Type: text/markdown

# Pavement plots

Quantile-based pavement plots with matplotlib. Every box contains an
equal share of the data.

![plot of four data sets](examples/four_sets.png)

See more in the [demo notebook](examples/demo.ipynb).


## Install

    pip install pavement


## Usage

    import pavement
    pavement.plot([1, 2, 3, 4, 5])


## Tests

    pip install -e '.[test]'
    pytest
