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

Ready to join fellow brilliant minds for the SAS Hackathon?

Build your skills. Make connections. Enjoy creative freedom. Maybe change the world. Registration is now open through August 30th. Visit the SAS Hackathon homepage.

Register today!
SAS Enterprise Guide vs. SAS Studio

What’s the difference between SAS Enterprise Guide and SAS Studio? How are they similar? Just ask SAS’ Danny Modlin.

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