X symmetry is the overlapping area of a shape and its projection over the x-axis.
comp_x_sym(plans, shp, epsg = 3857, ncores = 1)
A redist_plans
object or plans_matrix where each row indicates a district assignment and each column is a plan.
A redist_map
object, tibble, or data frame with an sf
geometry column.
Numeric EPSG code to use to project the shapefile, if needed. Default is 3857.
Integer number of cores to use. Default is 1.
A numeric vector. Can be shaped into a district-by-plan matrix.
Aaron Kaufman, Gary King, and Mayya Komisarchik. 2021. How to Measure Legislative District Compactness If You Only Know it When You See It. American Journal of Political Science. 65, 3. Pp. 533-550.
#' data(nh)
data(nh_m)
# For a single plan:
comp_x_sym(plans = nh$r_2020, shp = nh)
#> [1] 0.6995961 0.3436371
# Or many plans:
# \donttest{
# slower, beware!
comp_x_sym(plans = nh_m[, 3:5], shp = nh)
#> [1] 0.5495320 0.7308093 0.7176119 0.8156387 0.8097034 0.4609379
# }