balu
balu

Reputation: 89

Not able to load the 'forecast' or 'auto.arima' functions

Although I installed the required packages to execute auto.arima(), im not able to do so. Can anybody navigate through this problemsee the screen shot

And further i tried to install "Rccp", but that also failed. Need the solution asap, thanks in advance.

Upvotes: 1

Views: 2159

Answers (2)

you must install the package with dependencies:

install.packages("forecast", dependencies = TRUE)

Upvotes: 0

karthikbharadwaj
karthikbharadwaj

Reputation: 368

You could try installing the needs package which takes care of all your dependencies.

install.packages('needs') needs(forecast) ?forecast

Upvotes: 2

Related Questions