Skip to contents

An R6 object for creating state-level hexbin choropleths.

Value

An R6 Class

Super class

Choropleth2 -> MXHexBinChoropleth

Public fields

label_color

color for the state labels

shadow_color

shadow color for the state labels

label_size

font size for the state labels

show_labels

draw the state labels

auto_contrast

automatically determine the label color based on the map fill scale

Methods

Inherited methods


MXHexBinChoropleth$new()

Initialize the map of Mexico

Usage

MXHexBinChoropleth$new(user.df)

Arguments

user.df

df

Returns

A new `MXHexBinChoropleth` object.


MXHexBinChoropleth$render()

Render a map of Mexico

Usage

MXHexBinChoropleth$render()

Returns

A ggplot2 object with the map of Mexico.


MXHexBinChoropleth$clone()

The objects of this class are cloneable with this method.

Usage

MXHexBinChoropleth$clone(deep = FALSE)

Arguments

deep

Whether to make a deep clone.

Examples

library(viridis)
#> Loading required package: viridisLite
library(scales)
#> 
#> Attaching package: ‘scales’
#> The following object is masked from ‘package:viridis’:
#> 
#>     viridis_pal

df_mxstate$value <- df_mxstate$indigenous / df_mxstate$pop
gg <- MXHexBinChoropleth$new(df_mxstate)
gg$title <- "Percentage of the population that self-identifies as indigenous"
gg$set_num_colors(1)
gg$ggplot_scale <- scale_fill_viridis("percent", labels = percent)
gg$render()