如何在使用geom_sf时删除边框线?

时间:2017-12-08 18:37:22

标签: r ggplot2 geospatial

我尝试了以下操作:

ggplot(geography) + geom_sf(aes(fill=rate, color = NULL))

但这并没有摆脱边界线。

1 个答案:

答案 0 :(得分:11)

如果没有可重复的例子,很难确切地知道您在寻找什么。但是,我会猜测您正在寻找一种方法来抑制标记不同多边形(区域)之间边界的线条,例如,抑制在世界地图上显示国家边界的线条。如果是这样,那么这是一个解决方案。

lwd = 0来电中使用geom_sf

示例(您可能需要下载ggplot2的开发版本)

# devtools::install_github("tidyverse/ggplot2")
library(ggplot2)
library(maps) 
library(maptools)
library(rgeos)
library(sf)

world1 <- sf::st_as_sf(map('world', plot = FALSE, fill = TRUE))

with_boundary <-
  ggplot() +
    geom_sf(data = world1, mapping = aes(fill = ID)) +
  theme(legend.position = "none") +
  ggtitle("With Country Boundaries")

without_boundary <-
  ggplot() +
    geom_sf(data = world1, mapping = aes(fill = ID), lwd = 0) +
  theme(legend.position = "none") +
  ggtitle("Without Country Boundaries")

enter image description here