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)
______________________________________________ R-help@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R-project.org/posting-guide.html and provide commented, minimal, self-contained, reproducible code.