View source: R/choropleth_GnmCatNum.R
| lflt_choropleth_GnmCatNum | R Documentation |
lflt_choropleth_GnmCatNum() Create a Leaflet choropleth map based on a particular data type.
In this case, you can load data with only three columns, where the firts it's a geoname column,
the second is a categorical column and the third must be a numeric class column, you should be sure that
three firts columns they meet this condition
lflt_choropleth_GnmCatNum(data = NULL, ...)
Gnm-Cat-Num
Other Gnm-Cat-Num plots:
lflt_bubbles_GnmCatNum()
data <- sample_data("Gnm-Cat-Num", n = 30)
lflt_choropleth_GnmCatNum(data)
# Activate data labels
lflt_choropleth_GnmCatNum(data)
# if you want to calculate the average instead of the sum, you can use agg inside a function
lflt_choropleth_GnmCatNum(data,
agg = "mean",
dataLabels_show = TRUE)
# data with more of one column
data <- sample_data("Gnm-Cat-Num-Dat-Yea-Cat", n = 30)
lflt_choropleth_GnmCatNum(data)
# Change variable to color and pallete type
lflt_choropleth_GnmCatNum(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_GnmCatNum(tooltip = info_tool)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.