concstats_palma {concstats} | R Documentation |
Palma ratio
concstats_palma(x, na.rm = TRUE)
x |
A non-negative numeric vector. |
na.rm |
A logical vector that indicates whether |
concstats_palma
measures the ratio of inequality (normally used with
income inequality) of the top 10 percent to the bottom 40 percent.
A single numeric measure.
Palma, J. G. (2006). "Globalizing Inequality: 'Centrifugal' and 'Centripetal' Forces at Work", DESA Working Paper No. 35.
# a vector of market shares
x <- c(0.4, 0.2, 0.25, 0.1, 0.05)
concstats_palma(x)
# a vector with NA values
x <- c(0.4, 0.2, 0.25, 0.1, 0.05, NA)
concstats_palma(x, na.rm = FALSE)