[R] LInes with types

2014-05-28 Thread ioanna ioannou
Hello all, I want to plot the legend for the following two lines: I have two lines: X1-c(0,1,2,3,4) Y1-c(0,1,2,3,4) Y2-c(5,6,7,8,9) Y3-(32,33,34,35,36) plot(X1,Y3,pch=20) lines(X1,Y1,lty=1,type='o') lines(X1,Y2,lty=1,type='b') lines(X1,Y3,lty=2) Any ideas how?

Re: [R] LInes with types

2014-05-28 Thread Jim Lemon
On Wed, 28 May 2014 01:20:33 AM ioanna ioannou wrote: X1-c(0,1,2,3,4) Y1-c(0,1,2,3,4) Y2-c(5,6,7,8,9) Y3-(32,33,34,35,36) plot(X1,Y3,pch=20) lines(X1,Y1,lty=1,type='o') lines(X1,Y2,lty=1,type='b') lines(X1,Y3,lty=2) Hi Ioanna, You actually have three lines,