运行代码后,图中有一个微小的差距。

x = seq(0, 1, by=0.01)
y1=x
y2=x^2
plot(x, y1,type="l")
lines(x,y2,type="l",col="red")
xx1<-c(0,x[x<1  & x>0 ],1,x[x<1  & x>0 ],0)
yy1<-c(0,x[x<1  & x>0 ],1,(x[x<1  & x>0 ])^2,0)
polygon(xx1,yy1,col="yellow")

请看附件,为什么有一个细小的间隙?我如何删除它,让它用黄色填充?

最佳答案

如果减少点数,问题的原因更容易看出:

x <- seq(0, 1, by=0.2)
plot(  x, x,   type="l" )
lines( x, x^2, col="red" )
xx1 <- c(0,x[x<1  & x>0 ],1,x[x<1  & x>0 ],0)
yy1 <- c(0,x[x<1  & x>0 ],1,x[x<1  & x>0 ]^2,0)
polygon(xx1, yy1, lwd=3, col="wheat")
points(xx1, yy1)

点是对的,但顺序不对。
对于凸多边形,xx1 应该先增加,然后再减少。
plot(  x, x,   type="l" )
lines( x, x^2, col="red" )
xx1 <- c(x, rev(x))
yy1 <- c(x, rev(x)^2)
polygon(xx1, yy1, lwd=3, col="wheat")

关于r - 为什么多边形函数中存在微小的差距?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/15879947/

10-12 17:16