Last updated:
0 purchases
plotlyink 0.0.1.dev34
Plotlyink aims at marrying plotly with pandas for quick and easy plotting.
Installation
pip3 install plotlyink
Overview
import pandas as pd
import plotlyink
df = pd.DataFrame({
'one' : [1., 2., 3., 4.],
'two' : [4., 3., 2., 1.],
})
# open .html in your browser:
df.iplot.scatter()
# get figure:
fig = df.iplot.scatter(as_figure=True)
For more, see: Tutorial Notebook.
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.