BookmarkSubscribeRSS Feed
matt23
Quartz | Level 8

I have a SAS EG 4.3 and I guess it does not include DATTRMAP to change colors of grouped scatterplots. Is there any other way to choose colors for grouped graphs without this function ?

2 REPLIES 2
PeterClemmensen
Tourmaline | Level 20

Use the DATACONTRASTCOLORS= Option in the STYLEATTRS Statement like this

 

proc sgplot data=sashelp.iris noautolegend;
   styleattrs datasymbols=(circlefilled) datacontrcolors=(red yellow green);
   scatter x=sepallength y=sepalwidth / group=species;
   keylegend / location=inside position=NE across=1;
run;

 

matt23
Quartz | Level 8
Yea, styleattrs don't work for me either. I guess I can't do it on this version of SAS. Thank you, though

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

Creating Custom Steps in SAS Studio

Check out this tutorial series to learn how to build your own steps in SAS Studio.

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
  • 2 replies
  • 1212 views
  • 1 like
  • 2 in conversation