问题描述
我正在尝试使用ggmap
为非营利组织创建董事会成员图.我位于圣地亚哥,所以我的代码如下:
I'm trying to create a map of board members for my nonprofit using ggmap
. I'm located in San Diego so my code is as follows:
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
是要缩放点的数值.当我运行此代码时,它将引发错误:
Where lat
and lon
are the members' geocoded latitude and longitude respectively, and Dues.Amount
is the numeric value by which I want the points scaled. When I run this code it throws the error:
我在网上找不到其他遇到相同问题的人.我是ggmap
的新用户,但我正在逐行跟踪网上找到的教程,所以我有点茫然.
I can't find anyone else online who is having the same problem. I'm a new user of ggmap
but I am following the tutorials I've found online pretty much line by line, so I'm kind of at a loss.
推荐答案
我遇到了同样的问题.它在ggmap的开发版本中已修复.使用devtools安装它:
I had the same problem. It is fixed in the dev version of ggmap. Install it using devtools:
library(devtools)
install_github('ggmap','dkahle')
重新启动会话,加载程序包,它应该可以工作
Restart session, load packages, and it should work
这篇关于错误:在R中调用ggmap时,"StatIdentity"不是从"namespace:ggplot2"导出的对象的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!