inc_pairs {redistmetrics} | R Documentation |
Count Incumbent Pairings
Description
Count the number of incumbents paired with at least one other incumbent.
Usage
inc_pairs(plans, shp, inc)
Arguments
plans |
A |
shp |
A |
inc |
Unqouted name of logical column in |
Value
vector of number of incumbents paired
Examples
data(nh)
data(nh_m)
# Use incumbent data:
fake_inc <- rep(FALSE, nrow(nh))
fake_inc[3:4] <- TRUE
# For a single plan:
inc_pairs(plans = nh$r_2020, shp = nh, inc = fake_inc)
# Or many plans:
inc_pairs(plans = nh_m[, 3:5], shp = nh, inc = fake_inc)
[Package redistmetrics version 1.0.7 Index]