R 语言基础绘图中par(new = T)参数的作用

 

001、

plot(1:10, pch = 16, cex = 2, col = "red")
plot(10:1, pch = 16, cex = 2, col = "green")

 

 

 

 

002、

plot(1:10, pch = 16, cex = 2, col = "red")
par(new = T)
plot(10:1, pch = 16, cex = 2, col = "green")

 

posted @ 2022-07-14 22:01  小鲨鱼2018  阅读(298)  评论(0)    收藏  举报