I'm plotting time series data that has an ISO8601 variable as the x-axis; however, having the labels as ISO8601 isn't very readable. What is the best way to retain the ISO8601 variable but display the labels as Day Month (i.e. 28 Jun)?
Here is what I currently have:
format(as.Date("2020-06-28"),"%d %b"))
But that means they now display in order like:
c("03 May","04 Jun", "06 May","07 Jun")
How can I get them to arrange in Date order?