Common functions for technical models

StatsAPI.nobsMethod
nbos(model::Abstract DEAModel)

Return number of observations of a DEA model.

source
Base.namesMethod
names(model::AbstractDEAModel)

Return the names of the decision making units (DMUs)

source
DataEnvelopmentAnalysis.peersFunction
peers(model::AbstractDEAModel)

Return peers of a DEA model.

Optional Arguments

  • atol=1e-10: tolerance for zero values.
  • namesref: a vector of strings with the names of the decision making units in the reference set.
source
DataEnvelopmentAnalysis.ispeerFunction
ispeer(P::DEAPeers, i::Int64, j::Int64)

Return true if j is peer of decision making unit i.

source
ispeer(P::DEAPeers, i::String, j::String)

Return true if j is peer of decision making unit i.

source
ispeer(P::DEAPeersDMU, j::Int64)

Return true if j is peer.

source
ispeer(P::DEAPeers, j::String)

Return true if j is peer.

source