Reputation: 11
I want to run this:
> library(forecast)
> rainF8 <- forecast.HoltWinters(rainF, h=8)
> plot.forecast(rainF8)
But I get two errors for both forecast.HoltWinters
and plot.forecast
.
Upvotes: 0
Views: 1060
Reputation: 31820
Use the generic functions forecast()
and plot()
. The specific methods are no longer user-visible.
Upvotes: 1