BookmarkSubscribeRSS Feed
398740
Calcite | Level 5

I am creating a comparative histograms using the following code. Is there a way to change the color of the histogram bins in this code?

proc univariate data = test;
CLASS group;
VAR score;
HISTOGRAM score / midpoints= -11 to 16 by 4;
run;


2 REPLIES 2
Reeza
Super User
You don't have a ton of options within PROC UNIVARIATE to change the colour. You can change your theme which will change the colour, or you can use SGPLOT and the HISTOGRAM statement there.

You may need to play around a bit to get the bins set up correctly again.

proc SGPLOT data=test;
histogram score / fillattrs=(color=green) binstart=-11 binwidth=4;
run;

https://documentation.sas.com/doc/en/pgmsascdc/v_017/grstatproc/n17xrpcduau1f8n1c1nhe477pv18.htm#n1v...
Rick_SAS
SAS Super FREQ

I'd switch to PROC SGPANEL for making the graph. Here is an example :

 

proc sgpanel data = sashelp.cars;
   panelby origin / layout=rowlattice;
   histogram MPG_City / fillattrs=(color=lightyellow);
run;

SAS Innovate 2025: Register Now

Registration is now open for SAS Innovate 2025 , our biggest and most exciting global event of the year! Join us in Orlando, FL, May 6-9.
Sign up by Dec. 31 to get the 2024 rate of just $495.
Register now!

What is Bayesian Analysis?

Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.

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
  • 2184 views
  • 0 likes
  • 3 in conversation