update to R helperfunction

This commit is contained in:
JamesEMcclure
2019-05-09 18:39:17 -04:00
parent e24564c39b
commit a3ed433ee4

View File

@@ -17,7 +17,7 @@ ReadSubphase<-function(PATH){
ReadTimelog<-function(PATH){
FILE=paste0(PATH,"/timelog.csv")
D<-read.csv(file=FILE,head=TRUE,sep=" ")
D$time<-seq(0,nrow(D))
D$time<-seq(1,nrow(D))
return(D)
}