Creates a default model space suitable for most choropleth/thematic maps. Includes uniform, base rate, and funnel models.
Usage
default_model_space(
expected,
sample_size = expected,
include_gaussian = FALSE,
prior = NULL
)Examples
# Default space with population as expected
population <- c(10000, 50000, 100000, 25000)
space <- default_model_space(population)
# Include Gaussian model
space <- default_model_space(population, include_gaussian = TRUE)