Takes an object produced by points_to_polygon()
, and
creates the corresponding choropleth map. The given clustering is according
to the Fisher-Jenks algorithm. This commonly used method for choropleths
seeks to reduce the variance within classes and maximize the variance
between classes.
choropleth(
sf_object,
value = "output",
id_name = "areaname",
mode = "plot",
n = 7,
legend_title = "Clustering",
palette = "viridis"
)
object of class sf
column name to shade the polygons
column name of ids to plot
choose between static ('plot' is default) and interactive map ('view')
number of clusters (default is 7)
title of legend
palette name or a vector of colors. See
tmaptools::palette_explorer()
for the named palettes.
Use a -
as prefix to reverse the palette. The default palette is
"viridis".
tmap
test <- points_to_polygon(nl_provincie, insurance, sum(amount, na.rm = TRUE))
#> 109 points fall not within a polygon.
choropleth(test)
choropleth(test, id_name = "areaname", mode = "view")