summary.dea | R Documentation |
Summary of the results obtained by a conventional DEA model.
## S3 method for class 'dea'
summary(object, exportExcel = FALSE, filename = NULL, returnList = FALSE, ...)
object |
An object of class |
exportExcel |
Logical value. If TRUE (FALSE by default) the results are also exported to an Excel file. |
filename |
Character string. Absolute file name (including path) of the exported Excel file. If NULL, then the file name will be "ResultsDEA" + timestamp.xlsx. |
returnList |
Logical value. If TRUE then the results are given as a list of data frames. If FALSE (default) all the data frames are merged into a single data frame. |
... |
Ignored. Used for compatibility issues. |
Depending on the model it returns a single data.frame containing: efficiencies, slacks, lambdas, targets, references or a list of data.frames with the cross-efficiencies computed with different methods (Arbitrary, Method II or Method III (see CITA)) or, in case the model is a Malmquist index, a single data.frame with the coefficients for the different periods.
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)
Charnes, A.; Cooper, W.W.; Rhodes, E. (1981). "Evaluating Program and Managerial Efficiency: An Application of Data Envelopment Analysis to Program Follow Through", Management Science, 27(6), 668-697. \Sexpr[results=rd]{tools:::Rd_expr_doi("10.1287/mnsc.27.6.668")}
data("PFT1981")
# Selecting DMUs in Program Follow Through (PFT)
PFT <- PFT1981[1:49, ]
PFT <- make_deadata(PFT,
inputs = 2:6,
outputs = 7:9 )
eval_pft <- model_basic(PFT,
orientation = "io",
rts = "crs")
summary(eval_pft)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.