Error: 'StatIdentity' is not an exported object from 'namespace:ggplot2' when calling ggmap in R
Error: 'StatIdentity' is not an exported object from 'namespace:ggplot2' when calling ggmap in R
我正在尝试使用 ggmap
为我的非营利组织创建董事会成员地图。我位于圣地亚哥,所以我的代码如下:
mapPoints <- qmap('San Diego, CA', zoom = 10) +
geom_point(data = membershipClean,
aes(x = lon, y = lat, stat = "identity", size = Dues.Amount),
alpha = .5)
其中 lat
和 lon
分别是成员的地理编码纬度和经度,Dues.Amount
是我希望点缩放的数值。当我 运行 此代码时,它会抛出错误:
Error: 'StatIdentity' is not an exported object from 'namespace:ggplot2'"
我在网上找不到遇到同样问题的其他人。我是 ggmap
的新用户,但我几乎是逐行按照我在网上找到的教程进行操作,所以我有点不知所措。
我遇到了同样的问题。它在 ggmap 的开发版本中得到修复。
使用 devtools 安装它:
library(devtools)
install_github('ggmap','dkahle')
重新启动会话,加载包,它应该可以工作
我正在尝试使用 ggmap
为我的非营利组织创建董事会成员地图。我位于圣地亚哥,所以我的代码如下:
mapPoints <- qmap('San Diego, CA', zoom = 10) +
geom_point(data = membershipClean,
aes(x = lon, y = lat, stat = "identity", size = Dues.Amount),
alpha = .5)
其中 lat
和 lon
分别是成员的地理编码纬度和经度,Dues.Amount
是我希望点缩放的数值。当我 运行 此代码时,它会抛出错误:
Error: 'StatIdentity' is not an exported object from 'namespace:ggplot2'"
我在网上找不到遇到同样问题的其他人。我是 ggmap
的新用户,但我几乎是逐行按照我在网上找到的教程进行操作,所以我有点不知所措。
我遇到了同样的问题。它在 ggmap 的开发版本中得到修复。 使用 devtools 安装它:
library(devtools)
install_github('ggmap','dkahle')
重新启动会话,加载包,它应该可以工作