有没有办法设置多边形的背景颜色?我想得到这样的情节......
set.seed(1)
n <- 100
xx <- c(0:n, n:0)
yy <- c(c(0,cumsum(stats::rnorm(n))), rev(c(0,cumsum(stats::rnorm(n)))))
plot (xx, yy, type="n", xlab="Time", ylab="Distance")
polygon(xx, yy, angle=45, density=10)
polygon(xx, yy+5, col="white")
polygon(xx, yy+5, angle=45, density=10, col="red")
但理想情况下,没有倒数第二行来设置背景(我正在编写的函数中绘制多个多边形)。我可以在最后一行中使用一个论点来否定整个倒数第二行吗?干杯。