How to create box plot for single variable without creating additional group variable (as explained in SAS website) with labels for extreme observation?
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
proc sgplot data=sashelp.cars;
vbox MPG_City / datalabel=Model;
run;
Thanks Rick !
SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!
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.