add_edge {geomander} | R Documentation |
Add Edges to an Adjacency List
Description
Add Edges to an Adjacency List
Usage
add_edge(adj, v1, v2, ids = NULL, zero = TRUE)
Arguments
adj |
list of adjacent precincts |
v1 |
vector of vertex identifiers for the first vertex. Can be an
integer index or a value to look up in |
v2 |
vector of vertex identifiers for the second vertex. Can be an
integer index or a value to look up in |
ids |
A vector of identifiers which is used to look up the row indices
for the vertices. If provided, the entries in |
zero |
boolean, TRUE if the list is zero indexed. False if one indexed. |
Value
adjacency list.
Examples
data(towns)
adj <- adjacency(towns)
add_edge(adj, 2, 3)
add_edge(adj, "West Haverstraw", "Stony Point", towns$MUNI)
[Package geomander version 2.3.0 Index]