Re: [R] Time on x-axis

2006-02-24 Thread Gabor Grothendieck
And also, read 1. R News 4/1 help desk article on dates and times, 2. the zoo vignette: library(zoo) vignette("zoo") and 3. re-read the Introduction to R manual: http://cran.r-project.org/doc/manuals/R-intro.pdf On 2/24/06, Gabor Grothendieck <[EMAIL PROTECTED]> wrote: > See: > > library(zoo

Re: [R] Time on x-axis

2006-02-24 Thread Gabor Grothendieck
See: library(zoo) ?read.zoo On 2/24/06, Sangeetha Swaminathan <[EMAIL PROTECTED]> wrote: > Hello, > > Thank you! It worked!! Now I have another query; I have about 300 data > entries, and I dont think it would be possible to quote everything under > tt<-c("") or x<-c(). Is there any way to plo

Re: [R] Time on x-axis

2006-02-24 Thread Sangeetha Swaminathan
Hello, Thank you! It worked!! Now I have another query; I have about 300 data entries, and I dont think it would be possible to quote everything under tt<-c("") or x<-c(). Is there any way to plot the graph, without having to manually quote all the data items in the array? Thank you. Sange

Re: [R] Time on x-axis

2006-02-20 Thread Gabor Grothendieck
Try this: # test data tt <- c("23:05:02", "23:10:02", "23:15:03", "23:20:03", "23:25:03", "23:30:03", "23:35:03", "23:40:03", "23:45:04", "23:50:04", "23:55:03", "23:55:03") x <- c(0.575764, 0.738379, 0.567414, 0.663436, 0.599834, 0.679571, 0.88141, 0.868848, 0.969271, 0.878968, 0.990972, 0.990972

[R] Time on x-axis

2006-02-20 Thread Sangeetha Swaminathan
Hello, I just started using the GNU R. I am having trouble plotting my data. I am tryin to plot the following data: TIMESTAMPLOGIN-TIME (hh:mm:ss) (s) 23:55:03 0.990972 23:55:03 0.990972 23:50:04 0.878968 23:45:04 0.969271 23:40:03 0.868848 23