as you can see on my x-axis, I need to move the position of the axis label "5 to 9" together with its bar column in front, after "0 to 4". Below is my code.
library(ggplot2)
ggplot(age, aes(factor(age), case, fill = sex)) +
geom_bar(stat="identity") +
scale_fill_brewer(palette = "Set1")+
ylab("# Cases") +
xlab("Age") +
theme(axis.text = element_text(size = 13)) +
theme(axis.title = element_text(size = 14))