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

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

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
  • 12835 views
  • 1 like
  • 3 in conversation