Hi! How can I get the values of alpha, beta, gamma for HoltWinters model?
like this
data("AirPassengers") plot(AirPassengers) my_hw<- HoltWinters(AirPassengers) lines(fitted(my_hw)[,1], col = 3) (myalpha <- my_hw$alpha) (mybeta <- my_hw$beta) (mygamma <- my_hw$gamma)
This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.