ggplot没有绘制ggmap对象

时间:2017-01-17 02:42:41

标签: r ggplot2 ggmap ggproto

当我从接受的答案(Plot coordinates on map)运行代码时,我在安装ggmap后第一次运行时收到以下错误消息:

# loading the required packages
library(ggplot2)
library(ggmap)

# creating a sample data.frame with your lat/lon points
lon <- c(-38.31,-35.5)
lat <- c(40.96, 37.5)
df <- as.data.frame(cbind(lon,lat))

# getting the map
mapgilbert <- get_map(location = c(lon = mean(df$lon), lat = mean(df$lat)), zoom = 4,
                      maptype = "satellite", scale = 2)

# plotting the map with some points on it
ggmap(mapgilbert) +
  geom_point(data = df, aes(x = lon, y = lat, fill = "red", alpha = 0.8), size = 5, shape = 21) +
  guides(fill=FALSE, alpha=FALSE, size=FALSE)

给出错误:

  

错误:GeomRasterAnn是使用不兼容的ggproto版本构建的。请重新安装提供此扩展程序的程序包。

我尝试安装ggp​​roto,但错误是:

> Warning in install.packages :
  package ‘ggproto’ is not available (for R version 3.3.2)

在后续尝试中,错误是:

  

错误:ggplot2不知道如何处理类ggmap / raster的数据

我可以使用以下方式绘制图像:

plot(mapgilbert)

我试过了:

map2 <- get_map("Rotorua", zoom = 16)
ggmap(data = map2)

返回以下错误消息:

  

错误:ggplot2不知道如何处理类ggmap / raster的数据

我只是不太清楚R知道下一步寻找解决方案的地方 - 确保所有包都更新。

1 个答案:

答案 0 :(得分:1)

这可能是版本错误,因为您的代码在我的机器上运行完美(R 3.3.2)。 devtools::install_github("dkahle/ggmap") devtools::install_github("hadley/ggplot2")

您可以下载软件包“devtools”并再次从github安装ggmap和ggplot2。