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

sas-innovate-2024.png

Join us for SAS Innovate April 16-19 at the Aria in Las Vegas. Bring the team and save big with our group pricing for a limited time only.

Pre-conference courses and tutorials are filling up fast and are always a sellout. Register today to reserve your seat.

 

Register now!

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