我可以在ggplot2中更改背景地图吗?

时间:2016-01-02 21:59:12

标签: r plot ggplot2

我刚刚在R中玩了ggplot2,语法如

geom_map(data=world, map=world
aes(x=long, y=lat, map_id=region),
color="white", fill="#7f7f7f", size=0.05, alpha=1/4)

这给了我世界地图,是否有可能只将英国地图作为背景地图? 非常感谢 佩迪

4 个答案:

答案 0 :(得分:7)

您还可以执行以下操作:

library(ggplot2)
library(ggthemes)
library(raster)
library(rgeos)

gbr <- getData("GADM", country="GBR", level=0)
gbr <- gSimplify(gbr, 0.01)

gbr_map <- fortify(gbr)

gg <- ggplot()
gg <- gg + geom_map(map=gbr_map, data=gbr_map,
                    aes(x=long, y=lat, map_id=id),
                    fill="#7f7f7f")
gg <- gg + coord_map()
gg <- gg + theme_map()
gg

一旦我的ggalt包裹在CRAN中,您甚至可以使用不错的投影。

enter image description here

答案 1 :(得分:3)

另请查看ggplot2::borders()

library(ggplot2)    
ggplot() + 
  borders(reg="UK", color="white", fill="#7f7f7f", alpha=1/4)

结果应该等于@ eipi10中的结果。

答案 2 :(得分:2)

library(maps)
library(ggplot2)

dat=map_data("world")

ggplot() + 
  geom_map(data=dat[dat$region=="UK",], map=dat[dat$region=="UK",],
         aes(x=long, y=lat, map_id=region),
         color="white", fill="#7f7f7f", size=0.05, alpha=1/4) +
  coord_fixed()

enter image description here

答案 3 :(得分:0)

library ggmap与ggplot2

配合得很好

你可以试试这个

library(ggmap)
map <- get_map(location = 'UK', zoom = 6)
ggmap(map)

并根据需要添加geom