Ich möchte y1 und y2 im selben Diagramm darstellen.
x <- seq(-2, 2, 0.05)
y1 <- pnorm(x)
y2 <- pnorm(x, 1, 1)
plot(x, y1, type = "l", col = "red")
plot(x, y2, type = "l", col = "green")
Aber wenn ich es so mache, werden sie nicht zusammen in dieselbe Fläche eingezeichnet.
In Matlab kann man Folgendes tun hold on
aber weiß jemand, wie man das in R macht?