Marying plotly & pandas
License: | MIT license |
---|---|
Documentation: | http://plotlyink.readthedocs.io/en/latest |
Source: | https://github.com/gjeusel/plotlyink |
pip3 install plotlyink
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.