3
how can I overlay two or more graphs without the limits of the axes also appear superimposed on the figure?
a = rnorm(1000)
b = runif(1000)
plot(a, type = "l")
par(new = T)
plot(b, type = "l", col = "blue", xlab = "", ylab = "")
#os eixos de y ficam sobrepostos