Message-ID: <8C6404D3-C422-472E-A3B4-0DC232E399BF@lisse.na>
Date: 2008-09-05T14:18:45Z
From: Dr Eberhard W Lisse
Subject: (with subject)
In-Reply-To: <971536df0809041659q69756a97t3b19939de9cf54e3@mail.gmail.com>
Oh, YES, thank you!
This weekend I'll try and figure out how to plot these events on
a 24 hour scale, i.e I'll aggregate the SQL query on the time
But not on the date) to see how many of those fall outside of
normal working hours :-)-O
greetings, el
On 05 Sep 2008, at 00:59 , Gabor Grothendieck wrote:
> 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)