Data envelopment analysis

From HandWiki

Data envelopment analysis (DEA) is a nonparametric method in operations research and economics for the estimation of production frontiers.[1] DEA has been applied in a large range of fields including international banking, economic sustainability, police department operations, and logistical applications[2][3][4] Additionally, DEA has been used to assess the performance of natural language processing models, and it has found other applications within machine learning.[5][6][7]

Description

DEA is used to empirically measure productive efficiency of decision-making units (DMUs). Although DEA has a strong link to production theory in economics, the method is also used for benchmarking in operations management, whereby a set of measures is selected to benchmark the performance of manufacturing and service operations.[8] In benchmarking, the efficient DMUs, as defined by DEA, may not necessarily form a “production frontier”, but rather lead to a “best-practice frontier.”[1][9]:243–285

In contrast to parametric methods that require the ex-ante specification of a production- or cost-function, non-parametric approaches compare feasible input and output combinations based on the available data only.[10] DEA, one of the most commonly used non-parametric methods, owes its name to its enveloping property of the dataset's efficient DMUs, where the empirically observed, most efficient DMUs constitute the production frontier against which all DMUs are compared. DEA's popularity stems from its relative lack of assumptions, the ability to benchmark multi-dimensional inputs and outputs as well as its computational ease owing to it being expressable as a linear program, despite its task to calculate efficiency ratios.[11]

History

Building on the ideas of Farrell,[12] the 1978 work "Measuring the efficiency of decision-making units" by Charnes, Cooper & Rhodes[1] applied linear programming to estimate, for the first time, an empirical, production-technology frontier. In Germany , the procedure had earlier been used to estimate the marginal productivity of R&D and other factors of production. Since then, there have been a large number of books and journal articles written on DEA or about applying DEA to various sets of problems.

Starting with the CCR model, named after Charnes, Cooper, and Rhodes,[1] many extensions to DEA have been proposed in the literature. They range from adapting implicit model assumptions such as input and output orientation, distinguishing technical and allocative efficiency,[13] adding limited disposability[14] of inputs/outputs or varying returns-to-scale[15] to techniques that utilize DEA results and extend them for more sophisticated analyses, such as stochastic DEA[16] or cross-efficiency analysis.[17]

Techniques

In a one-input, one-output scenario, efficiency is merely the ratio of output over input that can be produced, while comparing several entities/DMUs based on it is trivial. However, when adding more inputs or outputs the efficiency computation becomes more complex. Charnes, Cooper, and Rhodes (1978)[1] in their basic DEA model (the CCR) define the objective function to find [math]\displaystyle{ DMU_j's }[/math] efficiency [math]\displaystyle{ (\theta_j) }[/math] as:

[math]\displaystyle{ \max \quad \theta_j = \frac{\sum\limits_{m=1}^{M}y_m^j u_m^j}{\sum\limits_{n=1}^{N}x_n^j v_n^j}, }[/math]

where the [math]\displaystyle{ DMU_j's }[/math] known [math]\displaystyle{ M }[/math] outputs [math]\displaystyle{ y_1^j,...,y_m^j }[/math] are multiplied by their respective weights [math]\displaystyle{ u_1^j,...,u_m^j }[/math] and divided by the [math]\displaystyle{ N }[/math] inputs [math]\displaystyle{ x_1^j,...,x_n^j }[/math] multiplied by their respective weights [math]\displaystyle{ v_1^j,...,v_n^j }[/math].

The efficiency score [math]\displaystyle{ \theta_j }[/math] is sought to be maximized, under the constraints that using those weights on each [math]\displaystyle{ DMU_k \quad k=1,...,K }[/math], no efficiency score exceeds one:

[math]\displaystyle{ \frac{\sum\limits_{m=1}^{M}y_m^k u_m^j}{\sum\limits_{n=1}^{N}x_n^k v_n^j} \leq 1 \qquad k = 1,...,K, }[/math]

and all inputs, outputs and weights have to be non-negative. To allow for linear optimization, one typically constrains either the sum of outputs or the sum of inputs to equal a fixed value (typically 1. See later for an example).

Because this optimization problem's dimensionality is equal to the sum of its inputs and outputs, selecting the smallest number of inputs/outputs that collectively, accurately capture the process one attempts to characterize is crucial. And because the production frontier envelopment is done empirically, several guidelines exist on the minimum required number of DMUs for good discriminatory power of the analysis, given homogeneity of the sample. This minimum number of DMUs varies between twice the sum of inputs and outputs ([math]\displaystyle{ 2 (M + N) }[/math]) and twice the product of inputs and outputs ([math]\displaystyle{ 2 M N }[/math]).

Some advantages of the DEA approach are:

  • no need to explicitly specify a mathematical form for the production function
  • capable of handling multiple inputs and outputs
  • capable of being used with any input-output measurement, although ordinal variables remain tricky
  • the sources of inefficiency can be analysed and quantified for every evaluated unit
  • using the dual of the optimization problem identifies which DMU is evaluating itself against which other DMUs

Some of the disadvantages of DEA are:

  • results are sensitive to the selection of inputs and outputs
  • high-efficiency values can be obtained by being truly efficient or having a niche combination of inputs/outputs
  • the number of efficient firms on the frontier increases with the number of inputs and output variables
  • a DMU's efficiency scores may be obtained by using non-unique combinations of weights on the input and/or output factors

Example

Assume that we have the following data:

  • Unit 1 produces 100 items per day, and the inputs per item are 10 dollars for materials and 2 labour-hours
  • Unit 2 produces 80 items per day, and the inputs are 8 dollars for materials and 4 labour-hours
  • Unit 3 produces 120 items per day, and the inputs are 12 dollars for materials and 1.5 labour-hours

To calculate the efficiency of unit 1, we define the objective function (OF) as

  • [math]\displaystyle{ Max Efficiency :(100u_1)/(10v_1+2v_2) }[/math]

which is subject to (ST) all efficiency of other units (efficiency cannot be larger than 1):

  • Efficiency of unit 1: [math]\displaystyle{ (100u_1)/(10v_1+2v_2)\leq 1 }[/math]
  • Efficiency of unit 2: [math]\displaystyle{ (80u_1)/(8v_1+4v_2)\leq 1 }[/math]
  • Efficiency of unit 3: [math]\displaystyle{ (120u_1)/(12v_1+1.5v_2)\leq 1 }[/math]

and non-negativity:

  • [math]\displaystyle{ u,v \geq 0 }[/math]

A fraction with decision variables in the numerator and denominator is nonlinear. Since we are using a linear programming technique, we need to linearize the formulation, such that the denominator of the objective function is constant (in this case 1), then maximize the numerator.

The new formulation would be:

  • OF
    • [math]\displaystyle{ Max Efficiency :100u_1 }[/math]
  • ST
    • Efficiency of unit 1: [math]\displaystyle{ 100u_1-(10v_1+2v_2)\leq 0 }[/math]
    • Efficiency of unit 2: [math]\displaystyle{ 80u_1-(8v_1+4v_2)\leq 0 }[/math]
    • Efficiency of unit 3: [math]\displaystyle{ 120u_1-(12v_1+1.5v_2)\leq 0 }[/math]
    • Denominator of nonlinear OF: [math]\displaystyle{ 10v_1+2v_2=1 }[/math]
    • Non-negativity: [math]\displaystyle{ u,v \geq 0 }[/math]

Extensions

A desire to improve upon DEA by reducing its disadvantages or strengthening its advantages has been a major cause for discoveries in the recent literature. The currently most often DEA-based method to obtain unique efficiency rankings is called "cross-efficiency." Originally developed by Sexton et al. in 1986,[17] it found widespread application ever since Doyle and Green's 1994 publication.[18] Cross-efficiency is based on the original DEA results, but implements a secondary objective where each DMU peer-appraises all other DMU's with its own factor weights. The average of these peer-appraisal scores is then used to calculate a DMU's cross-efficiency score. This approach avoids DEA's disadvantages of having multiple efficient DMUs and potentially non-unique weights.[19] Another approach to remedy some of DEA's drawbacks is Stochastic DEA,[16] which synthesizes DEA and Stochastic Frontier Analysis (SFA).[20]

Footnotes

  1. 1.0 1.1 1.2 1.3 1.4 Charnes et al (1978)
  2. Charnes et al (1995)
  3. Emrouznejad et al (2016)
  4. Thanassoulis (1995)
  5. Koronakos and Sotiropoulos (2020)
  6. Zhou et al (2022)
  7. Guerrero et al (2022)
  8. Mahmoudi et al (2021)
  9. Sickles et al (2019)
  10. Cooper et al (2007)
  11. Cooper et al (2011)
  12. Farrell (1957)
  13. Fried et al (2008)
  14. Cooper et al (2000)
  15. Banker et al (1984)
  16. 16.0 16.1 Olesen (2016)
  17. 17.0 17.1 Sexton (1986)
  18. Doyle (1994)
  19. Dyson (2001)
  20. Olesen et al (2016)

References

  • Cook, Wade D.; Tone, Kaoru; Zhu, Joe (April 2014). "Data envelopment analysis: Prior to choosing a model". Omega 44 (C): 1–4. doi:10.1016/j.omega.2013.09.004. 
  • Cooper, William Wager; Seiford, Lawrence; Zhu, Joe (2000). "A unified additive model approach for evaluating inefficiency and congestion with associated measures in DEA". Socio-Economic Planning Sciences 34 (1): 1–25. doi:10.1016/S0038-0121(99)00010-5. 
  • Cooper, William Wager; Seiford, Lawrence; Zhu, Joe (2000). "A unified additive model approach for evaluating inefficiency and congestion with associated measures in DEA". Socio-Economic Planning Sciences 34 (1): 1–25. doi:10.1016/S0038-0121(99)00010-5. 
  • Cooper, William Wager; Seiford, Lawrence M.; Tone, Kaoru (2007) (in en). Data Envelopment Analysis: A Comprehensive Text with Models, Applications, References and DEA-Solver Software (2 ed.). Springer Publishing. 
  • Cooper, William Wager, ed (2011) (in en). Handbook on Data Envelopment Analysis. International Series in Operations Research & Management Science. 164 (2 ed.). Springer Publishing. ISBN 978-1441961501. 
  • Dyson, R. G.; Allen, R.; Camanho, A. S.; Podinovski, V. V.; Sarrico, C. S.; Shale, E. A. (2001-07-16). "Pitfalls and protocols in DEA". European Journal of Operational Research. Data Envelopment Analysis 132 (2): 245–259. doi:10.1016/S0377-2217(00)00149-1. 
  • Doyle, John; Green, Rodney (1994). "Efficiency and Cross-efficiency in DEA: Derivations, Meanings and Uses" (in en). Journal of the Operational Research Society 45 (5): 567–578. doi:10.1057/jors.1994.84. ISSN 0160-5682. 
  • Emrouznejad, Ali; Banker, Rajiv; Ray, Subhash; Chen, Lei (2016). Recent Applications of Data Envelopment Analysis. Proceedings of the 14th International Conference on Data Envelopment Analysis. 
  • Farrell, Michael James (1957). "The Measurement of Productive Efficiency". Journal of the Royal Statistical Society 120 (3): 253–290. doi:10.2307/2343100. 
  • Fried, Harold O.; Lovell, C. A. Knox; Schmidt, Shelton S. (2008) (in en). The Measurement of Productive Efficiency and Productivity Growth. Oxford University Press. ISBN 978-0-19-804050-7. 
  • Guerrero, Nadia; Aparicio, Juan; Valero-Carreras, Daniel (2022). "Combining data envelopment analysis and machine learning". Mathematics 10 (6): 909. doi:10.3390/math10060909. 
  • Lovell, C.A.L., & P. Schmidt (1988) "A Comparison of Alternative Approaches to the Measurement of Productive Efficiency, in Dogramaci, A., & R. Färe (eds.) Applications of Modern Production Theory: Efficiency and Productivity, Kluwer: Boston.
  • Olesen, Ole B.; Petersen, Niels Christian (2016). "Stochastic Data Envelopment Analysis—A review" (in en). European Journal of Operational Research 251 (1): 2–21. doi:10.1016/j.ejor.2015.07.058. ISSN 0377-2217. 
  • Ramanathan, R. (2003) (in en). An Introduction to Data Envelopment Analysis: A tool for Performance Measurement. N.Delhi: SAGE Publishing. 
  • Sexton, Thomas R. (1986). "Data envelopment analysis: Critique and extension". New Directions for Program Evaluation 1986 (32): 73–105. doi:10.1002/ev.1441. 
  • Sickles, Robin; Zelenyuk, Valentin (2019) (in en). Measurement of Productivity and Efficiency - Theory and Practice. Cambridge University Press. ISBN 978-1-107-68765-3. https://assets.cambridge.org/97811070/36161/frontmatter/9781107036161_frontmatter.pdf. Retrieved 27 January 2022. 
  • Thanassoulis, Emmanuel (1995). "Assessing police forces in England and Wales using data envelopment analysis". European Journal of Operational Research 87 (3): 641–657. doi:10.1016/0377-2217(95)00236-7. 
  • Zhou, Zachary; Zachariah, Alisha; Conathan, Devin; Kline, Jeffery (2022). "Assessing Resource-Performance Trade-off of Natural Language Models using Data Envelopment Analysis". Proceedings of the 3rd Workshop on Evaluation and Comparison of NLP Systems (Association for Computational Linguistics): 11–20. 
  • Koronakos, Gregory; Sotiropoulos, Dionysios (2020). "A Neural Network approach for Non-parametric Performance Assessment". 2020 11th International Conference on Information, Intelligence, Systems and Applications (IISA. IEEE. pp. 1–8. doi:10.1109/IISA50023.2020.9284346. ISBN 978-1-6654-2228-4. https://ieeexplore.ieee.org/document/9284346. 

Further reading

External links