0

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.

Jonathan Leffler
  • 730,956
  • 141
  • 904
  • 1,278
  • Did you read the manual for `forecast` package [here](https://cran.r-project.org/web/packages/forecast/forecast.pdf)? Also, can you please tell us what error you got? – Pragyaditya Das Nov 20 '17 at 11:47

1 Answers1

1

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

Rob Hyndman
  • 30,301
  • 7
  • 73
  • 85