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..

sas-innovate-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

Register now!

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

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