search for: ndatet

Displaying 1 result from an estimated 1 matches for "ndatet".

Did you mean: ndate
2011 May 12
1
separate date and time
I have a combined date and time. I would like to separate them out into two columns so I can do things such as take the mean by time across all dates. meas<-runif(435) nTime<-seq(1303975800, 1304757000, 1800) nDateT<-as.POSIXct(nTime, origin="1970-01-01") mat1<-cbind(nDateT,meas) means1<- aggregate(mat1$meas, list(nDateT), mean) This doesn't do anything as each day is different, but if I had just the time, it would take the mean outputing 48 values (for each 30 min). Also, sometimes t...