[R] HELP boxplot for time class

2009-12-05 Thread uvilla
hi again I will try this time to explain my problem clearly I have the following data from the file skiing.csv (3 first rows) protokollid datestart end 14 2/23/2009 8:50:10 15:17:30 24 2/24/2009 9:47:00 13:52:25 35 3/22/2009 8:51:25

Re: [R] HELP boxplot for time class

2009-12-05 Thread Gabor Grothendieck
Try this: Lines - protokollid datestart end 4 2/23/2009 8:50:10 15:17:30 4 2/24/2009 9:47:00 13:52:25 5 3/22/2009 8:51:25 12:00:05 library(chron) skiers - read.table(textConnection(Lines), header = TRUE, as.is = TRUE) skiers - transform(skiers, date = dates(date), start

Re: [R] HELP boxplot for time class

2009-12-05 Thread uvilla
Thanks a lot Gabor, now I could finally plot the as time data. I just have one more question, and I hope it is the last. In the script of the boxplot, bp - boxplot(as.numeric(skiers$start), yaxt = n) axis(2, bp$stats, times(bp$stats), las = 2, cex.axis = 0.5) I have been trying to add a main

Re: [R] HELP boxplot for time class

2009-12-05 Thread Gabor Grothendieck
Use the title function: title(My main, xlab = My X, ylab = My Y) On Sat, Dec 5, 2009 at 12:38 PM, uvilla maruchave...@hotmail.com wrote: Thanks a lot Gabor, now I could finally plot the as time data. I just have one more question, and I hope it is the last. In the script of the boxplot,