I am doing this in plotnine, but hoping ggplotters can assist as well. Consider the following plot: I would like the dates to be arranged from left to right, not top to bottom. For example, I want the first row to be Sep-2019, Dec-2019, Mar-2020, Jun-2020, Sep-2020 etc. I have tried different version of order=1 without success. Thanks Answer As
Tag: ggplot2
Is position_dodge2() working for python with plotnine?
I’m using ggplot in python with plotnine, I have this piece of code: that plots this figure: And I want to have the same size bars, even if in some cases like case 0 there is only one bar. I know I should do it with: But I’m getting the following error in python: Do you know how to solve