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
> > 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
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
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
4 matches
Mail list logo