I am trying to plot a Gantt chart like visualization for the below dataset
I was able to get it for one date like below
df1 = df[df.Date1=='2018-01-01']
ax = plt.hlines(df1.process, df1.start1, df1.end1 )
is there a way to generate subplots for all the dates?
i am looking for something like this
thanks