mutual_total_nested {segregation} | R Documentation |
Calculates a nested decomposition of segregation for M and H
Description
Returns the between-within decomposition defined by
the sequence of variables in unit
.
Usage
mutual_total_nested(data, group, unit, weight = NULL, base = exp(1))
Arguments
data |
A data frame. |
group |
A categorical variable or a vector of variables
contained in |
unit |
A vector of variables
contained in |
weight |
Numeric. (Default |
base |
Base of the logarithm that is used in the calculation. Defaults to the natural logarithm. |
Value
Returns a data.table similar to mutual_total
,
but with column between
and within
that define
the levels of nesting.
Examples
mutual_total_nested(schools00, "race", c("state", "district", "school"),
weight = "n"
)
# This is a simpler way to run the following manually:
# mutual_total(schools00, "race", "state", weight = "n")
# mutual_total(schools00, "race", "district", within = "state", weight = "n")
# mutual_total(schools00, "race", "school", within = c("state", "district"), weight = "n")
[Package segregation version 1.1.0 Index]