R 包 choroplethr 说使用 zip_choroplethr 而不是 zip_map,但功能不可用
R package choroplethr says use zip_choroplethr instead of zip_map, but function not available
我做了 install.packages("choroplethr")
,然后是 library(choroplethr)
。我想了解如何制作邮政编码等值线,所以我开始在 RStudio 中输入,
“?choroplethr::zip
...”RStudio 找到的唯一函数是 zip_map
。我转到它的帮助文件并查看以下文档:
This function is deprecated as of choroplethr version 3.0.0. Please
use ?zip_choropleth instead. The last version of choroplethr in which
this function worked was version 2.1.1, which can be downloaded from
CRAN here:
http://cran.r-project.org/web/packages/choroplethr/index.html
好的,我想我会了解这个 zip_choroplethr
函数的。
?choroplethr::zip_choroplethr
# No documentation for ‘zip_choroplethr’ in specified packages and libraries:
# you could try ‘??zip_choroplethr’
吴。
感谢您使用 choroplethr。
zip_map 确实已弃用。它使用散点图,这不是可视化邮政编码的最佳方式,尤其是因为它们太小了。
在 choroplethr 中,邮政编码等值线由一个新的独立包管理:choroplethrZip。您可以查看安装说明和文档 here.
CRAN 由于地图的大小而拒绝了 choroplethrZip,这就是为什么它位于单独的包中并位于 github。
我做了 install.packages("choroplethr")
,然后是 library(choroplethr)
。我想了解如何制作邮政编码等值线,所以我开始在 RStudio 中输入,
“?choroplethr::zip
...”RStudio 找到的唯一函数是 zip_map
。我转到它的帮助文件并查看以下文档:
This function is deprecated as of choroplethr version 3.0.0. Please use ?zip_choropleth instead. The last version of choroplethr in which this function worked was version 2.1.1, which can be downloaded from CRAN here: http://cran.r-project.org/web/packages/choroplethr/index.html
好的,我想我会了解这个 zip_choroplethr
函数的。
?choroplethr::zip_choroplethr
# No documentation for ‘zip_choroplethr’ in specified packages and libraries:
# you could try ‘??zip_choroplethr’
吴。
感谢您使用 choroplethr。
zip_map 确实已弃用。它使用散点图,这不是可视化邮政编码的最佳方式,尤其是因为它们太小了。
在 choroplethr 中,邮政编码等值线由一个新的独立包管理:choroplethrZip。您可以查看安装说明和文档 here.
CRAN 由于地图的大小而拒绝了 choroplethrZip,这就是为什么它位于单独的包中并位于 github。