0

我试图从 R 中的“choroplethr”包中了解区域字段是什么。

library(choroplethr)
data("df_county_demographics")

这提供了我感兴趣的人口统计数据。最终,我想将此数据映射到我拥有的纬度/经度点的集合。只是想看看如何做到这一点。

任何信息或建议都会非常有帮助。

谢谢

数据图像: df_county_demographics

- - - - - - - - - - - - 解决了 - - - - - - - - - - - - - ---

data(county.fips, package="maps")
data(df_county_demographics, package="choroplethr")
popData <- merge.data.frame(county.fips, df_county_demographics, 
    by.x= "fips", by.y = "region")
4

1 回答 1

0

地区列是县 FIPS 代码

如果您想要县的纯英文名称,您可以加入/df_county_demographics合并?county.regions.

于 2017-05-02T05:13:51.977 回答