As a R learner, I'm using "timeAverage" function in the "openair" package to aggregate my hourly data into daily basis. My data is in EST timezone, and I would like to have my results in EST timezone as well.
This is the code I use, pretty simple: require(openair) daily <- timeAverage(comparison,avg.time="day")
However, I encountered a warning message: Warning message: In checkPrep(mydata, vars, type = "default", remove.calm = FALSE, : Detected data with Daylight Saving Time, converting to UTC/GMT
Is this means my output is in GMT timezone? How can I keep my timezone as EST in the output?
Thanks so much!