I have two column data set: Date
and Ozone
. Time series is irregular hourly data, I need to calculate daily average data.
My problem is the final file has only one value instead of whole Ozone
column. I have tried several different versions but I cannot solve the problem.
dataset1 <- structure(list(Date = structure(1:3, .Label = c("7/11/2013 18:33",
"7/11/2013 18:34", "7/11/2013 18:35"), class = "factor"), ozone = c(40.7, 40.4,
40.9)), .Names = c("Date", "ozone"), row.names = c(NA, 3L), class = "data.frame")
#convert dataframe to xts object
library(xts)
xt1 <- xts(dataset1[,-1],
order.by = as.POSIXct(dataset1$Date, format= "%m/%d/%Y %H:%M"))
x_updated <- apply.daily(xt1, colMeans)
#convert back the dataset to data.frame
write.csv(as.data.frame(x_updated), file="daily")
Here is the dplyr solution: