aw_preview_weights {areal} | R Documentation |
Preview Areal Weights
Description
Provides a preview of the weight options for areal weighted interpolation.
This can be useful for selecting the final specification for aw_interpolate
without having to construct a pipeline of all of the subfunctions manually.
Usage
aw_preview_weights(.data, tid, source, sid, type)
Arguments
.data |
A |
tid |
A unique identification number within |
source |
A |
sid |
A unique identification number within |
type |
One of either |
Value
A tibble with the areal weights that would be used for interpolation if type
is either "extensive"
or "intensive"
. If it is mixed, two tibbles (one for
"extensive"
and one for "intensive"
) are returned as a list.
Examples
aw_preview_weights(ar_stl_wards, tid = WARD, source = ar_stl_race, sid = GEOID,
type = "extensive")
aw_preview_weights(ar_stl_wards, tid = WARD, source = ar_stl_asthma, sid = GEOID,
type = "intensive")