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-2024.png

Join us for SAS Innovate April 16-19 at the Aria in Las Vegas. Bring the team and save big with our group pricing for a limited time only.

Pre-conference courses and tutorials are filling up fast and are always a sellout. Register today to reserve your seat.

 

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