BookmarkSubscribeRSS Feed
Vahe_Mar
Obsidian | Level 7

How to change colours in boxplot

proc template;
define statgraph classbox;
begingraph / designwidth=700px designheight=450px backgroundcolor=CXE8E6E8;
layout overlay;
boxplot y=&var1 x=tmt/group=ANALYTE_FULL name='box' ;

endlayout;
endgraph;
end;
run;

Thanks,
Vahe
6 REPLIES 6
PeterClemmensen
Tourmaline | Level 20

Are you sure you want to do this at template level?

 

Why not just change the color directly in an SGPLOT Procedure? You can control the colors of the individual parts like this

 

proc sgplot data=sashelp.heart;
    vbox cholesterol / category=deathcause fillattrs=(color=green) 
                                           lineattrs=(color=black)
                                           whiskerattrs=(color=blue)
                                           meanattrs=(color=red)
                                           medianattrs=(color=red)
                                           outlierattrs=(color=purple);
run;

 

 

Vahe_Mar
Obsidian | Level 7
this is changing both
Thanks,
Vahe
PeterClemmensen
Tourmaline | Level 20

Both what? What do you want to change?

Vahe_Mar
Obsidian | Level 7
SAS giving automatically two colours blue and red, so i want change colours firs red after blue
Thanks,
Vahe
DR_Majeti
Quartz | Level 8

Hi, 

 

Please let know which part of Box need a Color update is required. 

Rick_SAS
SAS Super FREQ

I think you are asking about changing the colors that are associated with the groups in the GROUP= option.

You can use the STLEATTRS statement to set those values. 

 

See 

https://blogs.sas.com/content/graphicallyspeaking/2013/07/14/setting-graph-colors-is-easier-with-sas...

or if you are not using SAS 9.4, see

https://blogs.sas.com/content/iml/2012/10/17/specify-the-colors-of-groups-in-sas-statistical-graphic...

 

 

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

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 6 replies
  • 1923 views
  • 1 like
  • 4 in conversation