The hardware and bandwidth for this mirror is donated by dogado GmbH, the Webhosting and Full Service-Cloud Provider. Check out our Wordpress Tutorial.
If you wish to report a bug, or if you are interested in having us mirror your free-software or open-source project, please feel free to contact us at mirror[@]dogado.de.
Data Envelopment Analysis (DEA) package for R, estimating robust DEA scores without and with environmental variables and doing returns-to-scale tests.
The package can be installed from the official R CRAN by
install.packages("rDEA")
Under Linux make sure you have GLPK installed before, e.g., in Ubuntu you need
sudo apt-get install libglpk-dev
Or if you need to compile GLPK set following environmental variables before installing rDEA
export CPATH=/path/to/include/glpk
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/path/to/lib/glpk
Using devtools our package can be installed by (make sure you have libglpk-dev installed)
library(devtools)
install_github("jaak-s/rDEA")
In Linux and Mac another option is to use command line (make sure you have slam, truncreg and truncnorm R packages installed)
git clone https://github.com/jaak-s/rDEA.git
R CMD build rDEA/
R CMD INSTALL rDEA_*.tar.gz
Robust DEA (Simar and Wilson, 1998) with input model with included Japan hospital data
library(rDEA)
## loading Japan hospital data
data("hospitals", package="rDEA")
## choosing inputs and outputs for analysis
= 1:50
firms = hospitals[firms, c('inpatients', 'outpatients')]
Y = hospitals[firms, c('labor', 'capital')]
X
## Robust DEA with 1000 bootstrap iterations and variable returns-to-scale
= dea.robust(X=X, Y=Y, model="input", RTS="variable", B=1000)
di
## robust estimates of technical efficiency for each hospital
$theta_hat_hat di
After installing rDEA package you can run included tests by
library(testthat)
test_package("rDEA")
These binaries (installable software) and packages are in development.
They may not be fully stable and should be used with caution. We make no claims about them.
Health stats visible at Monitor.