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: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

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.

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