BookmarkSubscribeRSS Feed
koomalkc
Fluorite | Level 6


How to create box plot for single variable without creating additional group variable (as explained in SAS website) with labels for extreme observation?

3 REPLIES 3
ballardw
Super User

You can use the variable used in the plot statement in the ID statement to display the value associated with the outliers:

proc boxplot data=Times;

   plot Delay*Day /

      boxstyle = schematicid

      nohlabel

      notches;

   id delay;

   label Delay = 'Delay in Minutes';

run;out

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!

What is ANOVA?

ANOVA, or Analysis Of Variance, is used to compare the averages or means of two or more populations to better understand how they differ. Watch this tutorial for more.

Find more tutorials on the SAS Users YouTube channel.

Discussion stats
  • 3 replies
  • 8022 views
  • 1 like
  • 3 in conversation