Solved – Time series model of intraday data on weekdays and weekends

time series

I would like to model intraday data of energy load. The data show strong seasonality within the day (which is clear and well known) and a different pattern on weekdays and weekends. I use the time series packages of R (package ts and then a decomposition in seasonality, level and trend). I get good results when I just concatenate the data ignoring the day of the week and estimate an aggregate model. But I would like to improve the quality on weekends.

How can I formulate a time series model that distinguishes between weekdays and weekends?

Best Answer

Check out the discussion on http://www.analyticbridge.com/forum/topics/vector-time-series-analysis. The whole idea is to seamlessly integrate daily predictions and hourly predictions into one. This is done while detecting and incorporating multiple level shifts, multiple time trends , the window of response around individual holidays while incorporating weather effects, all while isolating unusual values. You could search for a mixed-frequency suite of software as you have both intra and inter day effects.

Related Question