Calculate Democratic Vote Share

part_dvs(plans, shp, dvote, rvote)

Arguments

plans

redist_plans object or plans_matrix where each row indicates a district assignment and each column is a plan

shp

redist_map object, tibble, or data frame containing other columns

dvote

unqouted name of column in shp with total population

rvote

unqouted name of column in shp with group population

Value

numeric vector

Examples

data(nh)
data(nh_m)
# For a single plan:
part_dvs(plans = nh$r_2020, shp = nh, rvote = nrv, dvote = ndv)
#> [1] 0.4387596 0.5378342

# Or many plans:
part_dvs(plans = nh_m[, 3:5], shp = nh, rvote = nrv, dvote = ndv)
#> [1] 0.5129071 0.4609086 0.5129833 0.4645765 0.4640581 0.5104106