我安装了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)
有什么建议吗?