Tuesday, 7 February 2017

offline plotly Gantt plots using Python/pandas

modified from https://plot.ly/python/gantt/#use-a-pandas-dataframe to do offline and outside of ipython


import plotly
from plotly.tools import FigureFactory as FF
import pandas as pd
df = pd.read_csv('https://raw.githubusercontent.com/plotly/datasets/master/gantt_example.csv')
fig = FF.create_gantt(df, colors=['#333F44', '#93e4c1'], index_col='Complete', show_colorbar=True,
bar_width=0.2, showgrid_x=True, showgrid_y=True)
plotly.offline.plot(fig, filename='gantt-use-a-pandas-dataframe')

Datanami, Woe be me