ramin asadi
ramin asadi

Reputation: 11

how to remove error "package ‘forecast.HoltWinters’ is not available (for R version 3.4.1)"?

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

Answers (1)

Rob Hyndman
Rob Hyndman

Reputation: 31820

Use the generic functions forecast() and plot(). The specific methods are no longer user-visible.

Upvotes: 1

Related Questions