R just:
Error: could not find function "ets"
ets is under the forecast package right? I can't use it.
R just:
Error: could not find function "ets"
ets is under the forecast package right? I can't use it.
You must import the library first:
 library(forecast)
 ?ets
If you get an error that R cannot find the package, you must install it:
 install.packages("forecast")
See the documentation
