在使用choroplethrZip包创建美国邮政编码的 choropleth 时,我收到 "c("region", "value") %in% colnames(user.df) are not all TRUE" 错误。
我正在尝试使用上述软件包根据该邮政编码中的标签值绘制美国地图的邮政编码。我正在尝试使用以下代码但不起作用
#install.packages("devtools")
library(devtools)
#install_github("choroplethr", "trulia")
library(choroplethr)
#install_github('arilamstein/choroplethrZip@v1.5.0')
library(choroplethrZip)
temp <- read.table("data.txt")
zip_choropleth(temp)
data.txt 看起来像
region value
00601 15
00602 42
00603 97
00604 3
. .
. .