R语言 在多边形中为ggplot蒙版打一个洞

v9tzhpje  于 2023-06-19  发布在  其他
关注(0)|答案(2)|浏览(94)

我在做一个ggplot的面具。如何在不使用GIS程序的情况下删除在ggplot上绘制的圆内的区域?我有一个data.frame,用于在图和圆上制作边界框,如下所示:

  1. library(ggplot2)
  2. bndBox <- data.frame(x=c(-Inf,Inf,Inf,-Inf),
  3. y=c(Inf,Inf,-Inf,-Inf),
  4. id="bnd")
  5. hole <- data.frame(
  6. x = cos(seq(0, 2*pi, length.out = 360)),
  7. y = sin(seq(0, 2*pi, length.out = 360)),
  8. id="circle"
  9. )
  10. porthole <- rbind(bndBox,hole)
  11. ggplot() +
  12. # I want to be able to see this point
  13. geom_point(aes(x = 0,y = 0)) +
  14. # But not this point
  15. geom_point(aes(x = -1,y = 0)) +
  16. geom_polygon(data=porthole,
  17. aes(x = x, y = y, fill = id),
  18. inherit.aes = FALSE)
yftpprvb

yftpprvb1#

更新了答案,以考虑顺时针方向前进的闭合多边形会形成一个孔。

  1. library(ggplot2)
  2. bndBox <- data.frame(x=c(-Inf,-Inf,Inf,Inf, -Inf),
  3. y=c(-Inf,Inf,Inf,-Inf, -Inf),
  4. id="bnd")
  5. bndBox <- data.frame(x=c(-1,1,1,-1, -1),
  6. y=c(-1,-1,1,1, -1),
  7. id="bnd")
  8. hole <- data.frame(
  9. x = cos(seq(0, 2*pi, length.out = 360)) * 0.95,
  10. y = sin(seq(0, 2*pi, length.out = 360)) * 0.95,
  11. id="circle"
  12. )
  13. porthole <- rbind(bndBox,hole)
  14. ggplot() +
  15. geom_polygon(data=porthole,
  16. aes(x = x, y = y), fill = "red")+
  17. geom_point(aes(x = 0, y = 0)) +
  18. coord_fixed() +
  19. theme_void()

创建于2023-06-15带有reprex v2.0.2

展开查看全部
gfttwv5a

gfttwv5a2#

我可以用sf做我想做的事情,但我希望不要走这条路,因为我发现代码很难理解,并且觉得geom_polygon()应该能够处理它。下面是一个繁琐的解决方案:

  1. library(ggplot2)
  2. library(sf)
  3. bndBox <- data.frame(x=c(-1,1,1,-1),
  4. y=c(1,1,-1,-1),
  5. id="bnd")
  6. hole <- data.frame(
  7. x = cos(seq(0, 2*pi, length.out = 360)),
  8. y = sin(seq(0, 2*pi, length.out = 360)),
  9. id="circle"
  10. )
  11. portholeSF <- st_sfc(
  12. st_polygon(
  13. list(
  14. hole = cbind(
  15. c(hole$x,hole$x[1]),
  16. c(hole$y,hole$y[1])
  17. ),
  18. bnd = cbind(
  19. c(bndBox$x,bndBox$x[1]),
  20. c(bndBox$y,bndBox$y[1])
  21. )
  22. )
  23. )
  24. )
  25. ggplot() +
  26. # I want to see this point
  27. geom_point(aes(x = 0,y = 0)) +
  28. # But not this point
  29. geom_point(aes(x = -0.75,y = 0.75)) +
  30. geom_sf(data = portholeSF)
展开查看全部

相关问题