Displaying 1 result from an estimated 1 matches for "lx80".
Did you mean:
0x80
2009 Nov 30
3
Assign palette (e.g. rainbow) to a series of points on 1 plot
...day90,y=lx90,type="b",col= "#E8FF00")
...
This is harder than it should be, I tracked down the color names
generated with rainbow(11) and individually name each points command.
2. Bind the respective x and y coords into 2 respective matrices and
plot.
lxs=matrix(c(lx100,lx90,lx80,lx70,lx60...))
days=matrix(c(day100,day90,day80,day70,day60...))
plot(x=days,y=lxs, col=rainbow(11), type="b")
The points rainbow (not as series) and the lines are red.
I tried various methods of binding data and plotting data frames
without success.
I would appreciate it if someone w...