View source: R/model_addsupereff.R
| model_addsupereff | R Documentation |
Solve the additive super-efficiency model proposed by Du, Liang and Zhu (2010). It is an extension of the SBM super-efficiency to the additive DEA model.
model_addsupereff(datadea,
dmu_eval = NULL,
dmu_ref = NULL,
orientation = NULL,
weight_slack_i = NULL,
weight_slack_o = NULL,
rts = c("crs", "vrs", "nirs", "ndrs", "grs"),
L = 1,
U = 1,
compute_target = TRUE,
returnlp = FALSE,
...)
datadea |
A |
dmu_eval |
A numeric vector containing which DMUs have to be evaluated.
If |
dmu_ref |
A numeric vector containing which DMUs are the evaluation reference set.
If |
orientation |
This parameter is either |
weight_slack_i |
A value, vector of length |
weight_slack_o |
A value, vector of length |
rts |
A string, determining the type of returns to scale, equal to "crs" (constant), "vrs" (variable), "nirs" (non-increasing), "ndrs" (non-decreasing) or "grs" (generalized). |
L |
Lower bound for the generalized returns to scale (grs). |
U |
Upper bound for the generalized returns to scale (grs). |
compute_target |
Logical. If it is |
returnlp |
Logical. If it is |
... |
Ignored, for compatibility issues. |
A list of class dea with the results for the evaluated DMUs (DMU component),
along with any other necessary information to replicate the results, such as
the name of the model and parameters orientation, rts,
dmu_eval and dmu_ref.
Vicente Coll-Serrano (vicente.coll@uv.es). Quantitative Methods for Measuring Culture (MC2). Applied Economics.
Vicente Bolós (vicente.bolos@uv.es). Department of Business Mathematics
Rafael Benítez (rafael.suarez@uv.es). Department of Business Mathematics
University of Valencia (Spain)
Du, J.; Liang, L.; Zhu, J. (2010). "A Slacks-based Measure of Super-efficiency in Data Envelopment Analysis. A Comment", European Journal of Operational Research, 204, 694-697. \Sexpr[results=rd]{tools:::Rd_expr_doi("10.1016/j.ejor.2009.12.007")}
Zhu, J. (2014). Quantitative Models for Performance Evaluation and Benchmarking. Data Envelopment Analysis with Spreadsheets. 3rd Edition Springer, New York. \Sexpr[results=rd]{tools:::Rd_expr_doi("10.1007/978-3-319-06647-9")}
model_additive, model_supereff,
model_sbmsupereff
# Replication of results in Du, Liang and Zhu (2010, Table 6, p.696)
data("Power_plants")
Power_plants <- make_deadata(Power_plants,
ni = 4,
no = 2)
result <- model_addsupereff(Power_plants,
rts = "crs")
efficiencies(result)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.