Re: [R] plot x-axis DateTime NOT evenly spaced

2013-01-09 Thread ishi soichi
Thanks! it was really helpful. soichi 2013/1/7 arun > Hi, > Try this: > dat1<-read.table(text="1 2012-07-01 00:57:54 +0900156 > 2 2012-07-01 01:07:41 +0900587 > 3 2012-07-01 01:09:31 +0900110 > 4 2012-07-01 01:18:42 +0900551 > 5 2012-07-01 01:39:01 +09001219 > 6 2012-07-01

Re: [R] plot x-axis DateTime NOT evenly spaced

2013-01-07 Thread arun
Hi, Try this: dat1<-read.table(text="1 2012-07-01 00:57:54 +0900    156 2 2012-07-01 01:07:41 +0900    587 3 2012-07-01 01:09:31 +0900    110 4 2012-07-01 01:18:42 +0900    551 5 2012-07-01 01:39:01 +0900    1219 6 2012-07-01 01:40:40 +0900  99",sep="",header=FALSE,stringsAsFactors=FALSE) dat2

Re: [R] plot x-axis DateTime NOT evenly spaced

2013-01-07 Thread Uwe Ligges
On 07.01.2013 09:55, ishi soichi wrote: R-64 latest Hi. I am trying to plot a set of csv data, which looks like head(interval) date inteval 1 2012-07-01 00:57:54 +0900 156 2 2012-07-01 01:07:41 +0900 587 3 2012-07-01 01:09:31 +0900 110 4 2012-07-01 01:18: