Revision a9ad709c106fcaa6c21d03edad7c83fa02a3fbf0 authored by Javier Barbero on 14 September 2022, 17:40:23 UTC, committed by GitHub on 14 September 2022, 17:40:23 UTC
1 parent 63f7300
Raw File
index.md
# DataEnvelopmentAnalysis.jl

DataEnvelopmentAnalysis.jl is a Julia package that provides functions for efficiency and productivity measurement using Data Envelopment Analysis (DEA). Particularly, it implements a variety of technical efficiency models, economic efficiency models and productivity change models.

The package is being developed for Julia `1.6` and above on Linux, macOS, and Windows.

The packes uses internally the [JuMP](https://github.com/JuliaOpt/JuMP.jl) modelling language for mathematicall optimization with solvers [GLPK](https://github.com/jump-dev/GLPK.jl) and [Ipopt](https://github.com/jump-dev/Ipopt.jl).

## Installation

The package can be installed with the Julia package manager:
```julia
julia> using Pkg; Pkg.add("DataEnvelopmentAnalysis")
```

## Tutorial

For a tutorial on how to use the package, check the documentation on the [Radial Input Oriented Model](@ref).

## Available models

Technical efficiency DEA models:
```@contents
Pages = ["technical/radial.md", "technical/radialbigdata.md", "technical/directional.md", "technical/additive.md", "technical/generalizeddf.md", "technical/russell.md", "technical/enhancedrussell.md", "technical/modifiedddf.md", "technical/holder.md", "technical/reverseddf.md"]
Depth = 2
```

Economic efficiency DEA models:
```@contents
Pages = ["economic/cost.md", "economic/revenue.md", "economic/profit.md", "economic/profitability.md"]
Depth = 1
```

Productivity change models:
```@contents
Pages = ["productivity/malmquist.md"]
Depth = 1
```

Statistical Analysis:
```@contents
Pages = ["statistical/radialboot.md", "statistical/rtstest.md"]
Depth = 1
```

## Extensions

The [BenchmarkingEconomicEfficiency.jl](https://github.com/javierbarbero/BenchmarkingEconomicEfficiency.jl) package provides an extensive set of functions for economic efficiency measurement using Data Envelopment Analysis (DEA).

## Authors

DataEnvelopmentAnalysis.jl is being developed by [Javier Barbero](http://www.javierbarbero.net) and [José Luís Zofío](http://www.joselzofio.net).
back to top