Statistical Procedures

Programming the statistical procedures from SAS
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-white.png

Our biggest data and AI event of the year.

Don’t miss the livestream kicking off May 7. It’s free. It’s easy. And it’s the best seat in the house.

Join us virtually with our complimentary SAS Innovate Digital Pass. Watch live or on-demand in multiple languages, with translations available to help you get the most out of every session.

 

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