我正在使用 choroplethr 为美国设置一个新的 choropleth 地图,并坚持显示与相应状态相对应的状态的值。
我正在尝试使用 choroplethr 构建 choropleth 地图。我的表有列区域和值。我成功地在相应状态上显示状态名称。我也试图在状态名称上显示相应的值名称。这是我为打印州名所做的以下代码行。
library(choroplethr)
library(choroplethrMaps)
library(dplyr)
gtd <- read.csv("50_us_state_names.csv")
statelabel <- gtd[,2:3]
colnames(statelabel) <- c("region", "value")
statelabel <- gtd[,2:3]
colnames(statelabel) <- c("region", "value")
statelabel$region <- tolower(statelabel$region)
statelabel$region <- gsub(" (u.s. state)", "", statelabel$region,
fixed=TRUE)
state_choropleth(statelabel)
我除了输出地图显示状态名称以及相应状态的值。