ordinalseg | R Documentation |
A function to compute Reardon (2009) ordinal indices
ordinalseg(x)
x |
an object of class matrix (or which can be coerced to that class), where each column represents the distribution of a group within spatial units. The number of columns should be greater than 1 (at least 2 groups are required). You should not include a column with total population, because this will be interpreted as a group. The rows represent the nominal categories (spatial units) and the columns the ordinal categories. |
A vector containing Reardon's multigroup ordinal segregation indices: Lambda1 (the ordinal generalization of the information theory index), Lambda2 (the ordinal generalization of the variation ratio index), Lambda3 (the ordinal square root index), and Lambda4 (the ordinal absolute difference index)
Reardon S. F. (2009) Measures of ordinal segregation. Research on Economic Inequality, 17, pp. 129-155.
rankorderseg
x <- GreHSize@data[ ,3:5]
ordinalseg(x)
x1 <- matrix(nrow = 4, ncol = 3)
x1[1,] <- c(0, 0, 30)
x1[2,] <- c(0, 20, 10)
x1[3,] <- c(10, 20 ,0)
x1[4,] <- c(30, 0 ,0)
x2 <- matrix(nrow = 4, ncol = 3)
x2[1,] <- c(0, 30, 0)
x2[2,] <- c(0, 10, 20)
x2[3,] <- c(10, 0, 20)
x2[4,] <- c(30, 0, 0)
ordinalseg(x1)
ordinalseg(x2)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.