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

Catch up on SAS Innovate 2026

Nearly 200 sessions are now available on demand in the Innovate Hub.

Watch Now →
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
  • 1829 views
  • 1 like
  • 2 in conversation