Libraries | R Documentation |
Data for 23 public libraries of the Tokyo Metropolitan Area in 1986.
data("Libraries")
Data frame with 23 rows and 7 columns. Definition of inputs (X) and outputs (Y):
Floor area (unit=1000 m2)
Number of books (unit=1000)
Staff
Population (unit=1000)
Registered residents (unit=1000)
Borrowed books (unit=1000)
Vicente Coll-Serrano (vicente.coll@uv.es). Quantitative Methods for Measuring Culture (MC2). Applied Economics.
Vicente Bolos (vicente.bolos@uv.es). Department of Business Mathematics
Rafael Benitez (rafael.suarez@uv.es). Department of Business Mathematics
University of Valencia (Spain)
Cooper, W.W.; Seiford, L.M. and Tone, K. (2007). Data Envelopment Analysis. A Comprehensive Text with Models, Applications, References and DEA-Solver Software. Springer.
make_deadata
, model_basic
# Example 1. Non-controllable input (POPULATION).
# Replication of results in Cooper, Seiford and Tone (2007, p.221)
data(Libraries)
# POPULATION (non-controllable input) is the 4th input.
data_example <- make_deadata(Libraries,
dmus = 1,
inputs = 2:5,
nc_inputs = 4,
outputs = 6:7)
result <- model_basic(data_example,
orientation = "io",
rts = "crs")
efficiencies(result)
targets(result)
# Example 2. Non-discretionary input (POPULATION).
data(Libraries)
# POPULATION (non-controllable input) is the 4th input.
data_example2 <- make_deadata(Libraries,
dmus=1,
inputs=2:5,
nd_inputs=4,
outputs=6:7)
result2 <- model_basic(data_example2,
orientation="io",
rts="crs")
efficiencies(result2)
targets(result2)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.