I have a dataset[attached below], and get a plot of a bunch of lines[below]. The code used does
specify the line color/thinkness. How to do so?!
Say line color in seq [RED, BLUE, CYAN, BLACK, RED, BLUE, CYAN, BLACK]
Line thickness, [1,1,1, 3,3 , 2,2,2]
proc sgplot data=_t_mm_temp_coll_n_t(where=(xahead in (-20,-10,0, 5, 10,20,30,40)));
by tvar;
series x=ncut y= cttot/ group =xahead ;
yaxis max=500 min=450;
refline 490/axis=y lineattrs=(color=red thickness=2 pattern=solid);
refline 480/axis=y lineattrs=(color=cyan thickness=1 pattern=solid);
run;quit;
... View more