Creates a tmap map displaying active cases per 'people' for the input data.

PerCapitaMap_tmap(
  DATA,
  people = 1e+05,
  boundaryweights = 0.05,
  projectionCRS = "+proj=eqearth",
  maptitle = NA
)

Arguments

DATA

Data containing prevalence information to map.

people

Transform from proportion of population to per 'people'.

boundaryweights

Weight assigned to the maps boundary edges.

projectionCRS

Type of geographic projection to use.

maptitle

Adds title to map.

Value

Outputs a tmap displaying active cases per 'people' for the input data.

See also

Examples

if (FALSE) {
Denmark <- LoadData("LoadDenmark")
PerCapitaMap_tmap(Denmark)
}