Performs the Lilliefors (Kolmogorov-Smirnov) test for the composite hypothesis of normality, see e.g. Thode (2002, Sec. 5.1.1).
LillieTest(x)
A list of class htest
, containing the following components:
the value of the Lilliefors (Kolomogorv-Smirnov) statistic.
the p-value for the test.
the character string “Lilliefors (Kolmogorov-Smirnov) normality test”.
a character string giving the name(s) of the data.
a numeric vector of data values, the number of which must be greater than 4. Missing values are allowed.
Juergen Gross <gross@statistik.uni-dortmund.de>
The Lilliefors (Kolmogorov-Smirnov) test is an EDF omnibus test for the composite
hypothesis of normality. The test statistic is the maximal absolute difference
between empirical and
hypothetical cumulative distribution function. It may be computed as
Dallal, G.E. and Wilkinson, L. (1986) An analytic approximation to the distribution of Lilliefors' test for normality. The American Statistician, 40, 294--296.
Stephens, M.A. (1974) EDF statistics for goodness of fit and some comparisons. Journal of the American Statistical Association, 69, 730--737.
Thode Jr., H.C. (2002) Testing for Normality Marcel Dekker, New York.
shapiro.test
for performing the Shapiro-Wilk test for normality.
AndersonDarlingTest
, CramerVonMisesTest
,
PearsonTest
, ShapiroFranciaTest
for performing further tests for normality.
qqnorm
for producing a normal quantile-quantile plot.
LillieTest(rnorm(100, mean = 5, sd = 3))
LillieTest(runif(100, min = 2, max = 4))
Run the code above in your browser using DataLab