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

Catch up on SAS Innovate 2026

Nearly 200 sessions are now available on demand with the SAS Innovate Digital Pass.

Explore Now →
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
  • 14212 views
  • 1 like
  • 3 in conversation