Group cases into neighborhoods based on walking distance.
neighborhoodWalking(pump.select = NULL, vestry = FALSE, weighted = TRUE,
case.set = "observed", latlong = FALSE, multi.core = FALSE)
Numeric. Vector of numeric pump IDs to define pump neighborhoods (i.e., the "population"). Negative selection possible. NULL
selects all pumps. Note that you can't just select the pump on Adam and Eve Court (#2) because it's technically an isolate.
Logical. TRUE
uses the 14 pumps from the Vestry report. FALSE
uses the 13 in the original map.
Logical. TRUE
computes shortest path weighted by road length. FALSE
computes shortest path in terms of the number of nodes.
Character. "observed" or "expected".
Logical.
Logical or Numeric. TRUE
uses parallel::detectCores()
. FALSE
uses one, single core. You can also specify the number logical cores. See vignette("Parallelization")
for details.