Re: [R] Legends for line and point data

2010-03-29 Thread Petr PIKAL
Hi r-help-boun...@r-project.org napsal dne 29.03.2010 16:13:31: > Hi, > Your question is really vague. > What about legend(lty=, pch=)? Well, it is probably not mentioned explicitly in ?legend but he is probably seeking legend(..., lty=c(1,NA, 2,3), pch=c(NA, 16, NA,NA)) Regards Petr > Ivan

Re: [R] Legends for line and point data

2010-03-29 Thread Ivan Calandra
Hi, Your question is really vague. What about legend(lty=, pch=)? Ivan Le 3/29/2010 12:45, Steve Murray a écrit : Dear all, I have a plot which contains 4 data series displayed using solid, dashed and dotted lines, and also points. How do I use lty and pch together to signify that the first l

[R] Legends for line and point data

2010-03-29 Thread Steve Murray
Dear all, I have a plot which contains 4 data series displayed using solid, dashed and dotted lines, and also points. How do I use lty and pch together to signify that the first legend item is a solid line, the second is point data (pch=16), the third is dashed and the fourth is dotted? Many