无法使用 ChoroplethrZip 包中的 get_zip_demographics() 函数提取 Zip 人口统计数据

Fail to extract Zip Demographics Data using get_zip_demographics() function in ChoroplethrZip package

我正在尝试获取 2015 年的 zip 人口统计数据。当我尝试以下代码时,出现错误消息 returns。

library(devtools)
install_github('arilamstein/choroplethrZip@v1.4.0')

library(choroplethrZip)
df_zip_2015 = get_zip_demographics(2015,5)

当数据试图读入时,我首先得到了一些由强制警告引入的 NA,但随后出现错误消息 returns

Error in choroplethr:::convert_acs_obj_to_df("zip", age, 1) : 
argument "include_moe" is missing, with no default

有什么办法可以解决这个问题吗?

您似乎正在安装 choroplethrZip 版本 1.4.0。但是,如果您转到 choroplethrZip github page,您会看到最新版本实际上是 1.5.0。

当我运行这段代码时:

library(devtools)
install_github('arilamstein/choroplethrZip@v1.5.0')

library(choroplethrZip)
df_zip_2015 = get_zip_demographics(2015,5)

我没有得到你描述的错误。