我刚在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)


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

最佳答案

您还可以执行以下操作:

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,您甚至可以使用一个不错的投影。

r - 我可以在ggplot2中更改背景图吗?-LMLPHP

08-20 01:23