Is the plyr package for R not available for R version 3.0.2?

17,306

The answer is that the package is available in R (just checked this on my machine).

The particular error message that you are getting is very misleading. It is R's `catch-all' condition for anything that it doesn't understand going wrong during installation. You will get this error if you mis-spelled anything (Plyr instead of plyr) or your network connection is not working, or you are behind a proxy or whatever.

I typically get this problem when I am behind a proxy or I have mis-spelled something. But it can be because of any other number of reasons. I will suggest you make sure you can access the internet from inside R first.

If nothing works, you can always download the package from CRAN using a browser. If you are on Windows, you want the .zip version and if you are on *nix you want the .tar.gz version. (.tgz for Macs?). Then you can install it like so:

setwd("/path/where/I/downloaded/the/compressed/file")
install.packages("plyr", repos=NULL)

See if that works.

Share:
17,306

Related videos on Youtube

eTothEipiPlus1
Author by

eTothEipiPlus1

As a data scientist, I utilize the latest technologies as well as mathematical theories and processes to build innovative solutions for analyzing and modeling data. I use concepts from both a business and mathematical perspective everyday because both are equally important for effectively predicting future demand, customer behaviors or recommending entities to consumers. I present mathematical and data-driven findings in a business-oriented fashion. I love working with a dedicated and passionate team. Throughout my career, I've worked closely with operation managers, engineers, data scientists, analysts, and executive leadership. It is immense fun for me to take manual, undesirable and/or new processes and automate them through mathematics, engineering and creativity. I thrive in environments that allow me to be creative, learn, teach, and deliver amazing products that help people and make the world a better place.

Updated on September 12, 2022

Comments

  • eTothEipiPlus1
    eTothEipiPlus1 over 1 year

    I tried installing the plyr package and I got the warning message saying it isn't available for R version 3.0.2. Is this true or is no? If not, why would I be getting this message? I tried using two different CRAN mirrors and both gave the same message.