Displaying 1 result from an estimated 1 matches for "k1_r1".
Did you mean:
t1_r1
2009 Feb 09
2
How to plot multiple graphs each with multiple y variables
...ide by side using mfrow. The first plot should contain data from D1-D4, the second should contain D5-D8.
I can plot these separately using the code,
par(mfrow=c(1,1))
plot(c(0.000001,1),c(0,100),type="n", xlab="D", ylab="% R", log="x")
points(D1$L0,D1$K1_R1,lwd=2, col="blue", )
points(D2$L0,D2$K1_R2,lwd=2, col="red", )
points(D3$L0,D3$K1_Rt3,lwd=2, col="orange", )
points(D4$L0,D4$K1_R4,lwd=2, col="black", )
or
par(mfrow=c(1,1))
plot(c(0.000001,1),c(0,100),type="n", xlab="D",...