Creates a tmap map displaying active cases per 'people' for the input data.
EventMap_tmap(
DATA,
G,
AB,
boundaryweights = 0.05,
projectionCRS = "+proj=eqearth",
maptitle = NA
)
Data containing prevalence information to map.
Event size to compute risk for.
Case ascertainment bias to compute risk for.
Weight assigned to the maps boundary edges.
Type of geographic projection to use.
Adds title to map.
Outputs a tmap displaying exposure risk for the input data.
Other mapplots:
EventMap_leaflet()
,
PerCapitaMap_leaflet()
,
PerCapitaMap_tmap()
if (FALSE) {
Austria <- LoadData("LoadAustria")
Austria$AB <- 4
EventMap_tmap(Austria, 50, Austria$AB)
}