Skip to content
Prev 155065 / 398506 Next

(with subject)

I assume the problem is that you want the axis to have all 12
months but your data is much shorter.  Try this:

mos <- seq(as.Date("2008-01-01"), length = 12, by = "month")
plot(range(mos), range(rawData$y), type = "n", xaxt = "n")
lines(rawData$Date, rawData$y)
axis(1, mos, month.abb)
On Thu, Sep 4, 2008 at 3:15 PM, Dr Eberhard W Lisse <el at lisse.na> wrote: