geom_path在更新R后生成warrning消息

时间:2016-11-15 09:07:33

标签: r google-maps ggplot2 ggmap

我安装了R版本3.3.2,因此我遇到了问题。我收到以下警告信息:

1:panel.margin已弃用。请改用panel.spacing属性 2:删除了包含缺失值的28行(geom_path)。

示例代码:

require(ggmap)
require(ggplot2)
from <- 'London'
to <- 'Paris'
route_df <- route(from, to, structure = 'route', mode = 'driving')
qmap('London', zoom = 10) +
  geom_path(
    aes(x = lon, y = lat),  colour = 'red', size = 1.5,
    data = route_df, lineend = 'round')
mapdist(from, to)

有什么建议吗?

0 个答案:

没有答案