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 2024

Innovate_SAS_Blue.png

Registration is open! SAS is returning to Vegas for an AI and analytics experience like no other! Whether you're an executive, manager, end user or SAS partner, SAS Innovate is designed for everyone on your team. Register for just $495 by 12/31/2023.

If you are interested in speaking, there is still time to submit a session idea. More details are posted on the website. 

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.

Get the $99 certification deal.jpg

 

 

Back in the Classroom!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 2 replies
  • 1291 views
  • 0 likes
  • 3 in conversation