Re: [R] how to create analog stripchart plots of x vs t (t=mm/dd/yyyy hh:mm:ss)

2006-03-13 Thread Don MacQueen
Richard, Since you mentioned that you can reformat the data any way you want, I'll add a suggestion. If you format your date/time data using R's default format, then your R script can be a little simpler. 2006-03-11 15:09,0.014652 (i.e., put the date and time together in one column, using

[R] how to create analog stripchart plots of x vs t (t=mm/dd/yyyy hh:mm:ss)

2006-03-11 Thread Richard Evans
Hello r-experts, I sure could us a little help. I have an ever updating text file with timestamped data in it. I can reformat in anyway I want if need be but currently I have chosen to make columns of date, time and measuresed value (comma delimeted and with the dates and times in quotes to

Re: [R] how to create analog stripchart plots of x vs t (t=mm/dd/yyyy hh:mm:ss)

2006-03-11 Thread jim holtman
I think that you problem is that your format statement should be %m/%d/%Y %H:%M; notice the capital 'y' for a 4 digit year. You were probably getting NAs for dates. Here is what I got after reading in your partial data: x - read.csv('clipboard', as.is=T, header=F) x V1V2