gpt4 book ai didi

从 wrld_simpl 全局 map 中移除南极洲

转载 作者:行者123 更新时间:2023-12-04 12:01:47 24 4
gpt4 key购买 nike

我在我的 ggplots 中使用 wrld_simpl 作为背景,并想删除南极洲。不知道该怎么做。谢谢您的帮助!

library(maptools)
data("wrld_simpl")
plot(wrld_simpl)
wrld_simpl[wrld_simpl@data$ISO3 != "ATA"]

脚本示例:

library(ggplot2)

p <- ggplot() +
geom_polygon(data = wrld_simpl, aes(x = long, y = lat, group = group), colour = "black", fill = "grey")
p <- p + geom_raster(data = df , aes(x = x, y = y, fill = layer))
p <- p + coord_equal() + theme_bw() + labs(x="", y="")
p <- p + scale_fill_gradientn(colours = rev(terrain.colors(10)))
p <- p + labs(list(title = ""))
p

最佳答案

我没有特别使用过那个包,但是 ggplot2::map_data()maps 包中调用了 map 。然后你可以像任何数据框一样使用 dplyr::filter 对其进行子集化。

library(dplyr)
library(maps)
library(ggplot2)

map_data("world") %>%
filter(region != "Antarctica") %>%
ggplot(aes(long, lat, group = paste(region, group))) +
geom_polygon() +
coord_fixed()

enter image description here enter image description here

关于从 wrld_simpl 全局 map 中移除南极洲,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45801462/

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