Reputation: 89
Although I installed the required packages to execute auto.arima(), im not able to do so. Can anybody navigate through this problem
And further i tried to install "Rccp", but that also failed. Need the solution asap, thanks in advance.
Upvotes: 1
Views: 2159
Reputation: 181
you must install the package with dependencies:
install.packages("forecast", dependencies = TRUE)
Upvotes: 0
Reputation: 368
You could try installing the needs package which takes care of all your dependencies.
install.packages('needs')
needs(forecast)
?forecast
Upvotes: 2