Displaying 1 result from an estimated 1 matches for "41ff41".
Did you mean:
4141
2007 Aug 25
3
fill circles
...the column Named "Height" to fill the circles with colors
(ex.: the small numbers in green then yellow and the high numbers in red).
I'd like to have a legend for the size and the colors too.
I did it manually using a script like that:
color[(x>=0.001)&(x<0.002)]<-"#41FF41"
color[(x>=0.002)&(x<0.003)]<-"#2BFF2B"
color[(x>=0.003)&(x<0.004)]<-"#09FF09"
color[(x>=0.004)&(x<0.005)]<-"#00FE00"
color[(x>=0.005)&(x<0.006)]<-"#00F700"
color[(x>=0.006)&(x<0.007)]<-&qu...