Reputation: 143
I am trying to load the forecast package and when giving the command library(forecast) it returns this.
Loading required package: zoo
Attaching package: ‘zoo’
The following objects are masked from ‘package:base’:
as.Date, as.Date.numeric
Loading required package: timeDate
This is forecast 5.6
Warning message:
package ‘timeDate’ was built under R version 3.1.2
I don't understand what the issue is here. I have installed zoo, timeDate, and forecast and it seemed like it was successful. Let me know if you need more information to help.
Upvotes: 3
Views: 6605
Reputation: 206232
You're just getting warnings, not errors. Sounds like one of the dependent packages was just built with an earlier version of R. try running update.packages()
to update potentially out of date packages.
Upvotes: 6