here is an example of my data:
test = data.frame(month_year = c("MAR13","APR13","MAY13","JUN13"),
turnover = c(10,15,25,10))
Here is my plot:
ggplot(data = test,
aes(x = month_year,
y = turnover,
group = 1))+
geom_line()
Now my question is why is the X-axis sorted alphabetically and how can I prevent it, because as you can see it makes no sense.
Thank you!