I need to create a chart like the one below, a series of stacked bars. Some values are positive and some are negative. I would like the chart to be displayed just like the stacked bar chart from excel, which stacks positives values up and negative values down. Is there a straightforward method to do this for N number of categories?
Here is some example data:
df = pd.DataFrame(index=['06-11-2018', '06-12-2018', '06-13-2018', '06-14-2018', '06-15-2018'],
data={'A': [-378, -2347, 509, 987, 513],
'B': [-527, -2599, 765, 533, 670],
'C': [-2343, -2273, 2093, 2197, 1990],
'D': [-1845, -1853, 3325, 1306, 2160]})


