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")