美学参数似乎不会影响ggmap上的geom_points

时间:2015-09-23 22:26:43

标签: r ggplot2 ggmap

我正在使用ggmap使用Google地图绘制一些纬度,经度对。这是我的代码:

#draw a map with Google API
newmap <- get_map(location = 'Europe', zoom = 4)
mappoints = ggmap(newmap) + geom_point(aes(x = longitude, y = latitude), size =.5), data = lat_lon)
mappoints

无论我传递给size参数,情节看起来都一样。我试过在aes()内移动size参数。我尝试过的尺寸参数范围从.01到5.

同样,当我尝试更改颜色时,我看不到地图中的任何变化。它总是有很大的黑色圆点。

#still shows black
mappoints = ggmap(newmap) + geom_point(aes(x = longitude, y = latitude), size =5, color="red"), data = lat_lon) 

我做错了什么?

1 个答案:

答案 0 :(得分:1)

在color =“red”

之后删除括号
data.frame(longitude = seq(10, 11, .5), latitute = seq(49, 50, .5)) -> lat_lon
# smaller points:
ggmap(newmap) + 
        geom_point(aes(x = longitude, y = latitute), size =3, color="red", data = lat_lon) 

ggmap(newmap) + 
    geom_point(aes(x = longitude, y = latitute), size =5, color="red", data = lat_lon)