Metadata-Version: 2.4
Name: pavement
Version: 0.2.2
Summary: Quantile-based pavement plots with matplotlib.
Project-URL: Homepage, https://github.com/ajschumacher/pavement
Project-URL: Issues, https://github.com/ajschumacher/pavement/issues
Project-URL: Changelog, https://github.com/ajschumacher/pavement/releases
Author: Aaron Schumacher
License-Expression: MIT
License-File: LICENSE
Keywords: boxplot,matplotlib,quantile,statistics,visualization
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Science/Research
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Topic :: Scientific/Engineering :: Visualization
Requires-Python: >=3.9
Requires-Dist: matplotlib>=3.5
Provides-Extra: test
Requires-Dist: pytest; extra == 'test'
Description-Content-Type: text/markdown

# Pavement plots

[![PyPI](https://img.shields.io/pypi/v/pavement.svg)](https://pypi.org/project/pavement/)
[![CI](https://github.com/ajschumacher/pavement/actions/workflows/ci.yml/badge.svg)](https://github.com/ajschumacher/pavement/actions/workflows/ci.yml)

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

![plot of four data sets](https://raw.githubusercontent.com/ajschumacher/pavement/main/examples/four_sets.png)

See more in the [demo notebook](https://github.com/ajschumacher/pavement/blob/main/examples/demo.ipynb).


## Install

    pip install pavement


## Usage

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


## Development

    pip install -e '.[test]'
    pytest
