Failed to install zoo package (R)

I am trying to download a zoo time series package using:

install.packages("zoo") 

but I get the following message:

 --- Please select a CRAN mirror for use in this session --- Warning: unable to access index for repository http://cran.cnr.Berkeley.edu/bin/windows/contrib/2.12 Warning: unable to access index for repository http://www.stats.ox.ac.uk/pub/RWin/bin/windows/contrib/2.12 Warning messages: 1: In open.connection(con, "r") : unable to connect to 'cran.r-project.org' on port 80. 2: In getDependencies(pkgs, dependencies, available, lib) : package 'zoo' is not available 

I tried several different mirrors and I keep getting the same error ... Is the zoo just not available in most mirrors or is something wrong?

+4
source share
1 answer

See FAQ 2.19 . Or, conversely, a quick search โ€œit is impossible to connect toโ€œ cran.r-project.org โ€on port 80โ€ on rseek.org .

Reading frequently asked questions and finding errors usually help solve most problems.

+11
source

All Articles