I have the following data:
value <- c(1.869, 1.855, 1.855, 1.855, 1.855, 1.855, 1.855, 1.848, 1.848, 1.848, 1.848, 1.848, 1.848, 1.849)
date <- c("2013-08-28 08:00:00 UTC", "2013-08-28 08:05:00 UTC", "2013-08-28 08:10:00 UTC", "2013-08-28 08:15:00 UTC", "2013-08-28 08:20:00 UTC", "2013-08-28 08:25:00 UTC", "2013-08-28 08:30:00 UTC", "2013-08-28 08:35:00 UTC", "2013-08-28 08:40:00 UTC", "2013-08-28 08:45:00 UTC", "2013-08-28 08:50:00 UTC", "2013-08-28 08:55:00 UTC", "2013-08-28 09:00:00 UTC", "2013-08-28 09:05:00 UTC")
indicator <- c(1,0,0,1,0,0,0,0,0,0,0,0,0,1)
data <- data.frame(date=date,value=value, indicator=indicator)
I want to do 2 things. First, I want aggregate/sum it to the 30 minute level, but ending with :00 and :30. For example, the first value in this data would not be included in the calculations, but 8:05 to 8:30 would be aggregated to 8:30, 8:35 to 9:00 to 9:00, and so on. I would also like to aggregate the indicator value. So, if there's a 1 present, I'd like there to be a 1 (I guess sum would work as well since it's non-zero).
I've tried rollapply (which works but I have to manually make sure that the data starts at 8:05) from the zoo package but would like to keep the date and aggregate the indicator as well:
aggdata <- rollapply(data=data$value,width=6,FUN=sum,by=6)
Data that does not include a full 30 minute interval is useless to me, so I'd rather not not include that data. My desired output is:
date value indicator
"2013-08-28 08:00:00 UTC" 1.869 1
"2013-08-28 08:30:00 UTC" 11.13 1
"2013-08-28 09:00:00 UTC" 11.088 0
"2013-08-28 09:05:00 UTC" 1.849 1
or better yet:
date value indicator
"2013-08-28 08:00:00 UTC" NA NA
"2013-08-28 08:30:00 UTC" 11.13 1
"2013-08-28 09:00:00 UTC" 11.088 0
"2013-08-28 09:05:00 UTC" NA NA
or even better:
date value indicator
"2013-08-28 08:30:00 UTC" 11.13 1
"2013-08-28 09:00:00 UTC" 11.088 0
Although it may be better to just leave it in zoo to convert it back to a data frame use:
fortify.zoo
: