我尝试了以下操作:
ggplot(geography) + geom_sf(aes(fill=rate, color = NULL))
但这并没有摆脱边界线。
答案 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")