0

I'm trying to install "Compind" package in r to do a BoD-DEA analysis. The problem is that when I try to install the package an error occurs:

Installing package into ‘C:/Users/fabri/Documents/R/win-library/4.0’
(as ‘lib’ is unspecified)
Warning in install.packages :
  package ‘Compind’ is not available for this version of R

A version of this package for your version of R might be available elsewhere,
see the ideas at
https://cran.r-project.org/doc/manuals/r-patched/R-admin.html#Installing-packages

So, I tryied to install the dependencies first but it didn't solve the problem. The code that I have is the following:

#INSTALL PACKAGES
install.packages("spdep")
install.packages('spDataLarge', repos='https://nowosad.github.io/drat/', type='source')
install.packages("Benchmarking")
install.packages("Hmisc")
install.packages("MASS")
install.packages("ggplot2")
install.packages("psych")
install.packages("GPArotation")
install.packages("lpSolve")
install.packages("nonparaeff")
install.packages("boot")
install.packages("Compind", dependencies = "TRUE")
  • Package has been removed from CRAN and has to be installed from archived versions. Always pays to check the [package page](https://cran.r-project.org/web/packages/Compind/index.html) if you're having difficulties installing. See [here](https://stackoverflow.com/questions/24194409/how-do-i-install-a-package-that-has-been-archived-from-cran) for how to install archived packages. – Ritchie Sacramento Jun 02 '22 at 10:29

0 Answers0