Re: [R] Plot not too dense line plot

2012-09-10 Thread Rui Barradas
Hello, Something like this? step <- myLength %/% 500 ix500 <- seq(1, myLength, by = step) curSubset <- currentSet[ix500] plot(seq(from = 1, to = myMax, length.out = 500), curSubset, ...etc... Hope this helps, Rui Barradas Em 10-09-2012 09:14, Alaios escreveu: > Dear all, > I am including in

Re: [R] Plot not too dense line plot

2012-09-10 Thread S Ellison
> > Dear all, > > I am including in a plot 6 different lines (?lines) with 6 > different line types. > > The problem is that I have so dense information that the > line types are not visible any more. Perhaps plot a lowess or loess curve to show trend instead of a point to point line? S Elliso

Re: [R] Plot not too dense line plot

2012-09-10 Thread Jim Lemon
On 09/10/2012 06:14 PM, Alaios wrote: Dear all, I am including in a plot 6 different lines (?lines) with 6 different line types. The problem is that I have so dense information that the line types are not visible any more. In the code below myLength<-length(currentSet) plot(seq(from=1,to=myMa

[R] Plot not too dense line plot

2012-09-10 Thread Alaios
Dear all, I am including in a plot 6 different lines (?lines) with 6 different line types. The problem is that I have so dense information that the line types are not visible any more.   In the code below myLength<-length(currentSet) plot(seq(from=1,to=myMax,length.out=myLength),currentSet, typ