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
.
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
.
Use the generic functions forecast()
and plot()
. The specific methods are no longer user-visible.