I have created a bar chart using the
grouped.plot(kind='bar')
method in Pandas. However the vertical x labels get cut off. when I try to change the bottom variable by saying
grouped.plot(kind='bar',bottom=0.2)
I get an error message:
TypeError: bar() got multiple values for keyword argument 'bottom'
So the method is sending it's own value for bottom and I don't know how to replace that.
I could avoid it and simply use the pyplot bar() method directly, but that means specifying the left and height variables directly and with the groupby object I am using, this will get rather tricky, so I am really hoping not to do that. Is there a way I can pass a different bottom variable through Pandas's .plot(kind='bar') method ?