In R, I have created a histogram of data points per month. I would like the tick marks centered under the bars and to keep the month/year labels. Any help is much appreciated!
My code is:
hist(d$date, "months", freq=TRUE, main="Number of locations by month", ylim=c(0,8000), xlab="Month", format = "%b %Y", xaxt="n") axis(side=1,at=d$mids, labels=???????????)