如何在同一 R 图中创建两条折线图?
我们可以在绘制第一张图表之后通过使用 lines 函数做到这一点。
示例
> x <- seq(-3, 3, 0.025) > X1 <- pnorm(x) > X2 <- pnorm(x, 2, 1) > plot(x, X1, type="l",col="red", ylab="X") > lines(x, X2, col="green")
广告
我们可以在绘制第一张图表之后通过使用 lines 函数做到这一点。
> x <- seq(-3, 3, 0.025) > X1 <- pnorm(x) > X2 <- pnorm(x, 2, 1) > plot(x, X1, type="l",col="red", ylab="X") > lines(x, X2, col="green")