i have a dataframe
suite_name fail Pass Report_datetime
0 VOLTE-VOLTE 5 7 2017-11-14 00:00:00
1 VOLTE-VOLTE 5 7 2017-11-11 00:00:00
2 VOLTE-VOLTE 5 7 2017-11-10 00:00:00
3 VOLTE-VOLTE 5 7 2017-11-09 00:00:00
4 VOLTE-VOLTE 5 7 2017-11-14 00:00:00
5 VOLTE-VOLTE 5 7 2017-11-14 00:00:00
i have grouped it
g1=df.groupby( [ 'Report_datetime'] ).sum()
print g1
Output :
Report_datetime fail Pass
2017-11-14 00:00:00 5 7
2017-11-11 00:00:00 5 7
2017-11-10 00:00:00 5 7
2017-11-10 00:00:00 5 7
**
How to plot this data in Bokeh? Bar.charts are not supported in latest version of Bokeh , so any example with Vbar and Figure would be great
