BookmarkSubscribeRSS Feed
aellman
Fluorite | Level 6

Hello,

I have created box plots using SAS 9.3 and SGPLOT as below. I would like to label the median values on the graph.  Is this possible?  I'm flexible on where the labels are - inside the box or to the side is fine.  If this isn't possible then, using v 9.3, is it possible to create an axis table for the median values?

I am using ODS to output to PDF and HTML.

Thank you in advance!

proc sgplot data=analysis_data;

            vbox admin_qty_12months/category=year;

    xaxis label="Index Year";

    yaxis label="Total administrations" grid values = (0 to 100 by 20);

run;

3 REPLIES 3
djrisks
Barite | Level 11

Hello,

You could use the discrete offset options or the blockplot statment which are explained on the Graphically speaking blog linked below.

http://blogs.sas.com/content/graphicallyspeaking/2011/11/12/graphs-with-axis-aligned-statistics-tabl...

http://blogs.sas.com/content/graphicallyspeaking/2011/11/10/it-pays-to-be-discrete/

Although, with these methods and because you want to produce a boxplot you will need to use GTL instead of SGPLOT. You will also need to create a column that contains the median of each year.

Please let me know if you have any questions.

Thanks.

aellman
Fluorite | Level 6

Thanks!  I'll give it a try.

Jay54
Meteorite | Level 14

SGPLOT VBox does not allow overlays with other plots to add labels.  But, with SAS 9.3, your best bet is to use SGANNOTATE to label the median values.

With GTL, you have the option to display the statistics below the box plot.  You can request only median if you want.  Or, you can use Scatterplot with DataLabel and DataLabelPosition to overlay the median value in the graph. Make the markers themselves of size=0.

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!

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