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

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

Register Now

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
  • 1888 views
  • 1 like
  • 4 in conversation