BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
Melk
Lapis Lazuli | Level 10

I am running a vertical bar chart for stat=median and would like an upper error bar to represent the 3rd quartile of the IQR. Is there a way to do this? I think error bars are only displayed when stat = mean?

 

proc sgplot data=dat;
    vbar x/ response=y stat=median;
run;

 

 

1 ACCEPTED SOLUTION

Accepted Solutions
Jay54
Meteorite | Level 14

For such custom situations, you will need to compute the median and 3rd quartile values by category using PROC MEANS.  Then you can use vbarparm to plot the bar chart of median by category and overlay a scatter of median by category with upper x-error bar to display the quartile.  You can set the scatter marker size to zero.

View solution in original post

2 REPLIES 2
Jay54
Meteorite | Level 14

For such custom situations, you will need to compute the median and 3rd quartile values by category using PROC MEANS.  Then you can use vbarparm to plot the bar chart of median by category and overlay a scatter of median by category with upper x-error bar to display the quartile.  You can set the scatter marker size to zero.

ballardw
Super User

Or using more of a "draw" it approach using NEEDLE statement with pre-summarized data:

 

proc summary data=sashelp.class nway;
   class sex;
   var weight;
   output out=plot (drop=_:) median= Q3= /autoname;
run;

   
proc sgplot data=plot;
  needle x=sex y=weight_q3 /markers markerattrs=(symbol=tack);
  vbarparm category=sex response=weight_median/ name='bar';
  keylegend 'bar';
run;

sas-innovate-white.png

Special offer for SAS Communities members

Save $250 on SAS Innovate and get a free advance copy of the new SAS For Dummies book! Use the code "SASforDummies" to register. Don't miss out, May 6-9, in Orlando, Florida.

 

View the full agenda.

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
  • 2 replies
  • 2596 views
  • 0 likes
  • 3 in conversation