View source: R/efficiencies.dea.R
efficiencies.dea | R Documentation |
Extract the scores (optimal objective values) of the evaluated DMUs from a conventional DEA solution. Note that these scores may not always be interpreted as efficiencies.
## S3 method for class 'dea'
efficiencies(x, ...)
x |
Object of class |
... |
Other options (for compatibility reasons). |
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)
Tomkins, C.; Green, R. (1988). “An Experiment in the Use of Data Envelopment Analysis for Evaluating the Efficiency of UK University Departments of Accounting”. Financial Accountability and Management 4(2): 147.
# Replication results model DEA1 in Tomkins and Green (1988)
data("Departments")
# Calculate Total income
Departments$Total_income <- Departments[, 5] + Departments[, 6] + Departments[, 7]
data_DEA1 <- make_deadata(Departments,
inputs = 9,
outputs = c(2, 3, 4, 12))
result <- model_basic(data_DEA1,
orientation = "io",
rts = "crs")
efficiencies(result) # Table 3 (p.156)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.