search for: lx60

Displaying 1 result from an estimated 1 matches for "lx60".

Did you mean: 0x60
2009 Nov 30
3
Assign palette (e.g. rainbow) to a series of points on 1 plot
...90,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 would kindl...