Re: [R] Plot Many Data to same plot

2012-02-21 Thread Jim Lemon
On 02/21/2012 11:56 PM, Alaios wrote: Dear all, I have a function that for a variable number of inputs plots them to the same plot I am doing this quite simply by plot(seq(from=start, to=stop, length.out=np), datalist[[1]]$dataset xlim=c(start, stop), ylim=c(0, 1), type="l")

Re: [R] Plot Many Data to same plot

2012-02-21 Thread Petr PIKAL
Hi If you want to have more than 6 line types you had either to use colours or to follow last part of lty advice from par and go to section "Line types". In that case you can not simúply use lty 1,2,...,n but you have to prespecify line types in some character vector and choose from that vect

Re: [R] Plot Many Data to same plot

2012-02-21 Thread R. Michael Weylandt
What do you want to change about the lines? pch (different characters) might give the desired variety. Michael On Tue, Feb 21, 2012 at 7:56 AM, Alaios wrote: > Dear all, > I have a function that for a variable number of inputs plots them to the same > plot > I am doing this quite simply by > >