I have data from 1 April
2008 -31 march 2015 (Daily Data).
I wanted to forecast daily Energy Data.From the graphForecast graph ,It is showing that following function is working somehow,so to cross check i decomposed the data(actual + forecasted)Decompostion of forecast,It is showing "Constant Trend" from the point of forecast. By I can conclude that my forecasted data is not correct ,it is picking Seasonality but not Trend. Where i am doing Wrong ? please suggest !!
mydata<-read.csv ("D:/file.csv",header=TRUE);
mydata1<-msts(mydata$Y,seasonal.period=c(7,365.25))
fit<-tbats(mydata1)
plot(forecast(fit))