如何使用zipcode数据集在R中创建地图?
data <- c("22313","10100","25001")
[示例邮政编码]
在这一刻,我有一个完整的zipcode数据集,我想在地图上打印并将其保存为pdf。
致以最诚挚的问候,
E.P。
答案 0 :(得分:0)
尝试使用我在1月how do I map (on a geographical map) data in R just given the US Zipcodes修改的以下代码:
pdf("myzipcodes.pdf")
library(maps)
map(database="usa")# national boundaries
library(zipcode)
data("zipcode")
myzips <- c("22313","83701","32301")
selected <- zipcode[ zipcode$zip %in% myzips, ]
points( selected$longitude, selected$latitude, pch= 19, cex= 2 )
text( selected$longitude, selected$latitude, selected$zip, pos=3, cex= 2 )
dev.off()
您提供了两个虚假的邮政编码,因此我添加了几个真实的邮政编码。
在RStudio中,您还可以使用&#39; export&#39;将图表导出为PDF文件。菜单。