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;

Ready to join fellow brilliant minds for the SAS Hackathon?

Build your skills. Make connections. Enjoy creative freedom. Maybe change the world. Registration is now open through August 30th. Visit the SAS Hackathon homepage.

Register today!
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.

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