Learn R Programming

BasketballAnalyzeR (version 0.8.1)

inequality: Inequality analysis

Description

Inequality analysis

Usage

inequality(data, nplayers)

Value

A list with the following elements: Lorenz (cumulative distributions used to plot the Lorenz curve) and Gini (Gini coefficient).

Arguments

data

numeric vector containing the achievements (e.g. scored points) of the players whose inequality has to be analyzed.

nplayers

integer, number of players to include in the analysis (ranked in nondecreasing order according to the values in data).

Author

Marco Sandri, Paola Zuccolotto, Marica Manisera (basketballanalyzer.help@unibs.it)

References

P. Zuccolotto and M. Manisera (2020) Basketball Data Science: With Applications in R. CRC Press.

See Also

plot.inequality

Examples

Run this code
Pbox.BN <- subset(Pbox, Team=="Brooklyn Nets")
out <- inequality(Pbox.BN$PTS, nplayers=8)
print(out)
plot(out)

Run the code above in your browser using DataLab