gini_index | R Documentation |
This function calculates the Gini Index for a vector x
.
gini_index(x, na.rm = TRUE)
x |
A vector containing the data for which the Gini index will be calculated. |
na.rm |
This parameter controls whether NA values are removed from
the vector (or not). Default is |
The calculated value of the Gini index.
# Household money from income brackets (2010) from Table C of # https://en.wikipedia.org/wiki/Gini_coefficient. x <- c(13.7, 12.0, 10.9, 13.9, 17.7, 11.4, 12.1, 4.5, 3.9) gini_index(x)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.