BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.


Hi,

I have a small Sample (with 30 points/observations) as variable "Sample" inside a Data Set named 'Data'.

I would like to know how to test if the this sample has a Normal Distribution.

Thanks!

1 ACCEPTED SOLUTION

Accepted Solutions
Doc_Duke
Rhodochrosite | Level 12

PROC UNIVARIATE has multiple tests for normality.  None of the tests are very powerful, so I'll also look at the plots for an eyeball test.

View solution in original post

3 REPLIES 3
Doc_Duke
Rhodochrosite | Level 12

PROC UNIVARIATE has multiple tests for normality.  None of the tests are very powerful, so I'll also look at the plots for an eyeball test.

SteveDenham
Jade | Level 19

And if the sample size is large (N>100) the tests are over-powered, where even small deviations can lead to a significant result.

Follow Doc's advice and look at the plots, especially the pp and qq plots.

Steve Denham

Rick_SAS
SAS Super FREQ

This should get you started:

ods graphics on;

PROC UNIVARIATE DATA=sashelp.iris(where=(Species="Virginica"));

VAR SepalLength;

histogram SepalLength / Normal;

qqplot SepalLength / Normal;

RUN;

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

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
  • 7584 views
  • 6 likes
  • 4 in conversation