BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
sueshaw
Obsidian | Level 7

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;  

1 ACCEPTED SOLUTION

Accepted Solutions
sueshaw
Obsidian | Level 7
I got it..
because I used format statement... value in datarmap had to use formatted value..

View solution in original post

1 REPLY 1
sueshaw
Obsidian | Level 7
I got it..
because I used format statement... value in datarmap had to use formatted value..

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

How to Concatenate Values

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 1 reply
  • 1180 views
  • 0 likes
  • 1 in conversation