part_lop_wins {redistmetrics} | R Documentation |
Calculate Lopsided Wins
Description
Calculate Lopsided Wins
Usage
part_lop_wins(plans, shp, dvote, rvote)
Arguments
plans |
A |
shp |
A |
dvote |
Unqouted name of column in |
rvote |
Unqouted name of column in |
Value
A numeric vector. Can be shaped into a district-by-plan matrix.
References
Samuel S.-H. Wang. 2016. "Three Tests for Practical Evaluation of Partisan Gerrymandering." Stanford Law Review, 68, Pp. 1263 - 1321.
Examples
data(nh)
data(nh_m)
# For a single plan:
part_lop_wins(plans = nh$r_2020, shp = nh, rvote = nrv, dvote = ndv)
# Or many plans:
part_lop_wins(plans = nh_m[, 3:5], shp = nh, rvote = nrv, dvote = ndv)
[Package redistmetrics version 1.0.7 Index]