giniindex {ClaimsProblems} | R Documentation |
Gini index
Description
This function returns the Gini index of any rule for a claims problem.
Usage
giniindex(E, d, Rule)
Arguments
E |
The endowment. |
d |
The vector of claims. |
Rule |
A rule: AA, APRO, CE, CEA, CEL, DT, MO, PIN, PRO, RA, Talmud. |
Details
Let be the endowment to be divided and
the vector of claims
with
and such that
, the sum of claims
exceeds the endowment.
Rearrange the claims from small to large, . The Gini index is a number aimed at measuring the degree of inequality in a distribution.
The Gini index of the rule
for the problem
, denoted by
, is
the ratio of the area that lies between the identity line and the Lorenz curve of the rule over the total area under the identity line.
Let . For each
define
and
. Then
In general .
Value
The Gini index of a rule for a claims problem and the Gini index of the vector of claims.
References
Ceriani, L. and Verme, P. (2012). The origins of the Gini index: extracts from Variabilitá e Mutabilitá (1912) by Corrado Gini. The Journal of Economic Inequality, 10(3), 421-443.
Mirás Calvo, M.Á., Núñez Lugilde, I., Quinteiro Sandomingo, C., and Sánchez Rodríguez, E. (2022). Deviation from proportionality and Lorenz-domination for claims problems. Rev Econ Design. doi: 10.1007/s10058-022-00300-y
See Also
lorenzcurve, cumawardscurve, deviationindex, indexgpath, lorenzdominance.
Examples
E=10
d=c(2,4,7,8)
Rule=AA
giniindex(E,d,Rule)
# The Gini index of the proportional awards coincides with the Gini index of the vector of claims
giniindex(E,d,PRO)