I would like to build two functions f1 and f2 on the same graph. With the following code, I found that the axis scales of the two graphs are different. Is there any way to make the scales the same?
plot(f1, 0, 1)
par(new=TRUE)
plot(f2, 0, 1)
source
share