BookmarkSubscribeRSS Feed
stancemcgraw
Obsidian | Level 7

Hi all,

 

   I have the following code that correctly produced three histograms by group.

However, I would

1) like to change the color of the bars (fill black)

2) change the x axis label from Npo_mean to Hours NPO:.

3) Change and clarify the Y-axis group labels

 

The graph output is attached below as well

 

proc univariate data=tube.survival2;

 

  class npogroup ;

  var Hours;      /* computes descriptive statisitcs */

  histogram Hours  / odstitle="Distribution of NPO by Fasting Category"

 vscale=percent vaxis=0 to 60 by 10 normal 

 nrows=3 midpoints=(0 to 22 by 2) ;

   

  ods select histogram; /* display on the histograms */

  INSET N = 'Number of patients' MEDIAN  MEAN  /position=ne ;

 

run;

3 REPLIES 3
PeterClemmensen
Super User

If the histogram(s) is all you are interested in, I suggest you use PROC SGPLOT/SGPANEL instead. Gives you more control over the visual attributes of the plot.

stancemcgraw
Obsidian | Level 7

Would you know the code to reproduce what I did above for sgplot?

PeterClemmensen
Super User

I can't see your data, but this should get you in the right direction. 

 

title 'Your Title Here';
proc sgpanel data=sashelp.iris noautolegend;
   panelby Species / columns=1;
   histogram SepalLength / fillattrs=(color=green);
   density SepalLength / lineattrs=(color=black);
   colaxis label='Label Here';
run;
title;

You can find all the information you need in the PROC SGPANEL Documentation.

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
  • 3 replies
  • 2152 views
  • 1 like
  • 2 in conversation