I would like to forecast 100x time series in r using exponential smoothing (HW or ARIMA) because my data is very seasonal. My data is currently setup like:
Month / Employee1 / Employee2 / Employee3 / ...
2015-01-31 / 1,200,000 / 1,900,000 / 800,000 / ...
2015-02-28 / 1,000,000 / 1,700,000 / 200,000 / ...
... Through 2018-06-30
I would like to forecast using exponential smoothing for each employee for 6 periods where frequency = 12. I can do this easily individually using forecast, but I would like to run all employees at once into a single table output. The confidence level can equal to 0 level=c(0,0) since I want a single output.
Any help is much appreciated!