While I can change annotations with the generic plot command turning off axes and annotations and specifying them again using the axis command e.g.
cars <- c(1, 3, 6, 4, 9)
plot(cars, type="o", col="blue", ylim=range(0, cars), axes=FALSE, ann=FALSE)
axis(1, at=1:5, lab=c("Mon","Tue","Wed","Thu","Fri"))
I cant do it with time series object e.g.
www <- "http://www.massey.ac.nz/~pscowper/ts/Maine.dat"
Maine.month <- read.table(www, header = TRUE)
attach(Maine.month)
Maine.month.ts <- ts(unemploy, start = c(1996, 1), freq = 12)
Maine.98 <- window(Maine.month.ts, start = c(1998,1), end = c(1998,11))
How can I plot Maine.98 with annotations looking like
"Jan-98" "Feb-98" "Mar-98" "Apr-98" "May-98" etc?