An open API service indexing awesome lists of open source software.

https://github.com/torvaney/chainplot

A(nother) rubbish wrapper for matplotlib
https://github.com/torvaney/chainplot

Last synced: 2 months ago
JSON representation

A(nother) rubbish wrapper for matplotlib

Awesome Lists containing this project

README

          

# Chainplot
Easy plotting via method chaining in python (yet another matplotlib wrapper)

Api ~~stolen~~ inspired by ggplot2 (and some of pandas)

## Example:
```python
import pandas as pd
from chainplot import Plot

data = pd.read_csv('https://vincentarelbundock.github.io/Rdatasets/csv/datasets/iris.csv')

(Plot(data)
.map(x='Sepal.Length', y='Petal.Length', by='Species')
.layer_points())
```