gpt4 book ai didi

r - 使用 geom_sf 时如何删除边界线?

转载 作者:行者123 更新时间:2023-12-04 00:53:59 28 4
gpt4 key购买 nike

关闭。这个问题需要debugging details .它目前不接受答案。












想改进这个问题?将问题更新为 on-topic对于堆栈溢出。

4年前关闭。




Improve this question




我尝试执行以下操作:

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

但这并没有摆脱边界线。

最佳答案

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

使用lwd = 0geom_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

关于r - 使用 geom_sf 时如何删除边界线?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47720329/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com