I want to have different line colors and patterns for group variable in sgplot
I have tried to use dattrmap but not sure why it wont work
thanks for your help.
data attrmap;
length id $10 value $10 linecolor $15 linepattern $10 markercolor $9 markersymbol $40;
input id $ value $ linecolor $ linepattern $ markercolor $ markersymbol $ ;
cards;
myid 1 blue solid blue square
myid 2 blue dash blue triangle
myid 3 lightblue solid lightblue star
myid 4 lightblue dash lightblue circle
myid 5 red solid red plus
myid 6 red dash red diamond
;
run;
proc sgplot data=stat_1 dattrmap=attrmap;
series y=aval x=avisit /group=actarmcd attrid=myid markers ;
xaxis label='Visit' ;
yaxis label="Mean" offsetmin=0 min=0;
keylegend /title=' ' noborder ;
format actarmcd $armcd.;
run;
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.