I'm trying to create a stacked bar chart in pandas using time series data:
DATE TYPE VOL0 2010-01-01 Heavy 932.6129031 2010-01-01 Light 370.6129032 2010-01-01 Medium 569.4516133 2010-02-01 Heavy 1068.2500004 2010-02-01 Light 341.5357145 2010-02-01 Medium 484.2500006 2010-03-01 Heavy 1090.9032267 2010-03-01 Light 314.419355
X = date, Y = vol, stacks = type
any help greatly appreciated, thankyou.