[R] Legend having lines with different types

2014-05-28 Thread IOANNA
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] Legend having lines with different types

2014-05-28 Thread S Ellison
I want to plot the legend for the following two lines: ... Any ideas how? Try ?legend S Ellison *** This email and any attachments are confidential. Any use...{{dropped:8}} __

Re: [R] Legend having lines with different types

2014-05-28 Thread Adams, Jean
IOanna, If you are trying to distinguish between the type=b and the type=o in the legend, there does not appear to be a way to do this with the legend() function in base. I found a similar question posted on stackoverflow, and they suggested a work around for something similar (but not quite the