Skip to content

Torvaney/chainplot

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Chainplot

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

Api stolen inspired by ggplot2 (and some of pandas)

Example:

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

About

A(nother) rubbish wrapper for matplotlib

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages