I have a data from Sept 2017 to August 2018.
But when I'm displaying it through ggplot, it plots from January 2018 to Aug 2018 and then Sept - Dec 2017. I want 2017 data first.
This is the code I've used:
ggplot(data = p3,
aes(x = month,
y = percentage)) +
geom_bar(aes(y = percentage*100), stat = "identity")+
geom_text(aes(y = percentage, label = formattable::percent(percentage)),
vjust = 1.5, colour="red")