lflt_choropleth_GcdCat: Leaflet choropleth by categorical variable

View source: R/choropleth_GcdCatNum.R

lflt_choropleth_GcdCatR Documentation

Leaflet choropleth by categorical variable

Description

lflt_choropleth_GcdCat() Create a Leaflet choropleth map based on a particular data type. In this case, you can load data with only two columns, where the firts it's a geocode column, and second is a categorical column, or make sure that the firts two columns of you data meet this condition

Usage

lflt_choropleth_GcdCat(data = NULL, ...)

Ftype

Gcd-Cat

Examples

data <- sample_data("Gcd-Cat", n = 30)
lflt_choropleth_GcdCat(data)

# Activate data labels
lflt_choropleth_GcdCat(data,
                       dataLabels_show = TRUE)

# data with more of one column
data <- sample_data("Gcd-Cat-Dat-Yea-Cat", n = 30)
lflt_choropleth_GcdCat(data)

# Change variable to color and pallete type
lflt_choropleth_GcdCat(data,
                       color_by = names(data)[2],
                       palette_type = "sequential")

# Change tooltip info and add additional information contained in your data
names_data <- names(data)
info_tool <- paste0("<b>",names_data[1],":</b> {", names_data[1],"}<br/><b>", names_data[4],":</b> {", names_data[4],"}<br/>")
data %>%
 lflt_choropleth_GcdCat(tooltip = info_tool)

randommonkey/lfltmagic documentation built on Feb. 19, 2023, 3:53 a.m.