Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Seeing if data is normally distributed in R

Can someone please help me fill in the following function in R:

#data is a single vector of decimal values normally.distributed <- function(data) { if(data is normal) return(TRUE) else return(NO) } 
like image 507
CodeGuy Avatar asked Oct 16 '11 01:10

CodeGuy


People also ask

How do you check if values are normally distributed?

For quick and visual identification of a normal distribution, use a QQ plot if you have only one variable to look at and a Box Plot if you have many. Use a histogram if you need to present your results to a non-statistical public. As a statistical test to confirm your hypothesis, use the Shapiro Wilk test.

How do you check if residuals are normally distributed in R?

In R, the best way to check the normality of the regression residuals is by using a statistical test. For example, the Shapiro-Wilk test or the Kolmogorov-Smirnov test. Alternatively, you can use the “Residuals vs. Fitted”-plot, a Q-Q plot, a histogram, or a boxplot.


2 Answers

Normality tests don't do what most think they do. Shapiro's test, Anderson Darling, and others are null hypothesis tests AGAINST the the assumption of normality. These should not be used to determine whether to use normal theory statistical procedures. In fact they are of virtually no value to the data analyst. Under what conditions are we interested in rejecting the null hypothesis that the data are normally distributed? I have never come across a situation where a normal test is the right thing to do. When the sample size is small, even big departures from normality are not detected, and when your sample size is large, even the smallest deviation from normality will lead to a rejected null.

For example:

> set.seed(100) > x <- rbinom(15,5,.6) > shapiro.test(x)      Shapiro-Wilk normality test  data:  x  W = 0.8816, p-value = 0.0502  > x <- rlnorm(20,0,.4) > shapiro.test(x)      Shapiro-Wilk normality test  data:  x  W = 0.9405, p-value = 0.2453 

So, in both these cases (binomial and lognormal variates) the p-value is > 0.05 causing a failure to reject the null (that the data are normal). Does this mean we are to conclude that the data are normal? (hint: the answer is no). Failure to reject is not the same thing as accepting. This is hypothesis testing 101.

But what about larger sample sizes? Let's take the case where there the distribution is very nearly normal.

> library(nortest) > x <- rt(500000,200) > ad.test(x)      Anderson-Darling normality test  data:  x  A = 1.1003, p-value = 0.006975  > qqnorm(x) 

enter image description hereenter image description here

Here we are using a t-distribution with 200 degrees of freedom. The qq-plot shows the distribution is closer to normal than any distribution you are likely to see in the real world, but the test rejects normality with a very high degree of confidence.

Does the significant test against normality mean that we should not use normal theory statistics in this case? (another hint: the answer is no :) )

like image 142
Ian Fellows Avatar answered Oct 13 '22 19:10

Ian Fellows


I would also highly recommend the SnowsPenultimateNormalityTest in the TeachingDemos package. The documentation of the function is far more useful to you than the test itself, though. Read it thoroughly before using the test.

like image 36
Brian Diggs Avatar answered Oct 13 '22 20:10

Brian Diggs