Displaying 1 result from an estimated 1 matches for "otimeout".
Did you mean:
timeout
2009 Apr 08
3
Convert data frame containing time stamps to time series
I read records using scan:
dat<-data.frame(scan(file="KDA.csv",what=list(t="%m/%d/%y
%H:%M",f=0,p=0,d=0,o=0,s=0,a=0,l=0,c=0),skip=2,sep=",",nmax=np,flush=TRUE,na.strings=c("I/OTimeout","ArcOff-line")))
which results in:
> dat[1:5,]
t f p d o s a l c
1 1/21/09 5:01 16151 8.2 76 30 282 1060 53 7
2 1/21/09 5:02 16256 8.3 76 23 282 1059 54 7
3 1/21/09 5:03 16150 8.4 76 26 282 1059 55 7
4 1/21/09 5:04 16150 9.0 76 25 282 1051 57 6
5...