Hi,
I use to check normality using proc univariate where the output gives 4 different test for normality.
Now, something has happened with my output and I dont see any Shapiro Wilks test in the output.
Anyone know the reason for this? Have I done something to turn off Shapiro?
Thanks
Thomas
We have no way of knowing unless you include your SAS program, but the following example produces the statistic:
proc univariate data=sashelp.iris normal;
var SepalWidth;
run;
The doc says that the S-W statistic is computed only when the sample size is less than 2000.
Dive into keynotes, announcements and breakthroughs on demand.
Explore Now →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.