mxmunicipio_choropleth: Create a municipio-level choropleth

View source: R/municipio.R

mxmunicipio_choroplethR Documentation

Create a municipio-level choropleth

Description

The map used is mxmunicipio.map. See ?mxmunicipio.map for more information.

Usage

mxmunicipio_choropleth(
  df,
  title = "",
  legend = "",
  num_colors = 7,
  zoom = NULL,
  show_states = TRUE
)

Arguments

df

A data.frame with a column named "region" and a column named "value". Elements in the "region" column must match the numeric codes in the "region" column of ?df_mxmunicipio either with a leading zero or without one (e.g. 01001 or 1001 are both fine)

title

An optional title for the map.

legend

An optional name for the legend.

num_colors

The number of colors to use on the map. A value of 1 will use a continuous scale, and a value in [2, 9] will use that many colors.

zoom

An optional vector of countries to zoom in on. Elements of this vector must exactly match the names of countries as they appear in the "region" column of ?country.regions

show_states

Wether to draw state borders.

Examples

df <- df_mxmunicipio_2020
df$value <- df$indigenous_language
mxmunicipio_choropleth(df)

diegovalle/mxmaps documentation built on Sept. 22, 2023, 9:57 p.m.