block2prec {geomander} | R Documentation |
Aggregate Block Table by Matches
Description
Aggregates block table values up to a higher level, normally precincts, hence the name block2prec.
Usage
block2prec(block_table, matches, geometry = FALSE)
Arguments
block_table |
Required. Block table output from create_block_table |
matches |
Required. Grouping variable to aggregate up by, typically made with geo_match |
geometry |
Boolean. Whether to keep geometry or not. |
Value
dataframe with length(unique(matches)) rows
Examples
set.seed(1)
data(rockland)
rockland$id <- sample(1:2, nrow(rockland), TRUE)
block2prec(rockland, rockland$id)
[Package geomander version 2.3.0 Index]