za.test {DistributionTest} | R Documentation |
perform a one- or two-sample analogue ZA of Anderson-Darling statistic
Description
The new statistics ZA appear similar to the Anderson-Darling, but it's generally much more powerful,see Jin Zhang(2002).
Usage
za.test(x, y, para = NULL, N = 1000)
Arguments
x |
a numeric vector of data values, the number of which must be greater than 7. Missing values are allowed. |
y |
When tested as a single sample, a numeric vector of data values, the number of which must be greater than 7. Missing values are allowed. When tested as two-sample, a character string indicating what type of test was performed. Distributions "unif", "exponential", "normal", "lognormal", "gamma","t" and "weibull" are recognised.Here,the names of "exponential", "normal" and "lognormal" are simplified as "exp" ,"norm" and "lognorm" respectively. |
para |
A named list giving the parameters of the distribution specified and this can be omitted. |
N |
The number of replications in Monte Carlo simulation.The default value is 1000 |
Details
The ZA test is an EDF omnibus test for the composite hypothesis of distribution. The test statistic is
Za = -\sum_{i=1}^{n}[\frac{\ln[F_{0}(X_{(i)})]}{n-i+0.5}+\frac{\ln[1-F_{0}(X_{(i)})]}{i-0.5}],
where F_{0}(x)
is a hypothesized distribution function to be tested.Here, F_{0}(X_{(i)}) = \Phi(x)
, \Phi
is the cumulative distribution function of the specificed distribution.The p-value is computed by Monte Carlo simulation.
Value
A list with class “htest” containing the following components:
statistic |
the value of the ZA statistic. |
p.value |
the p-value for the test. |
method |
the character string “ZA test for given distribution”. |
data.name |
a character string giving the name(s) of the data. |
Note
The Za test is the recommended EDF test by Jin Zhang.
Author(s)
Ning Cui
References
Jin Zhang: Goodness-of-Fit Tests Based on the Likelihood Ratio.Journal of the Royal Statistical Society,64,281-294.
Jin Zhang,Yuehua Wu: Likelihood-ratio tests for normality.Computational Statistics & Data Analysis,49,709-721.
Jin Zhang: Powerful Two-Sample Tests Based on the Likelihood Ratio. Technometrics, 48:1, 95-103.
See Also
ks.test
for performing a one- or two-sample Kolmogorov-Smirnov test.
zc.test
,zk.test
for performing a powerful goodness-of-fit test based on the likelihood ratio.
Examples
x<-rbeta(50,shape1 = 0.6,shape2 = 0.8)
y<-rnorm(50)
za.test(x,y)
za.test(x,"unif")
za.test(x,"norm")
za.test(x,"unif",para = list(min=1,max=2))
za.test(x,"exp",para = list(rate=1))
za.test(x,"norm",para = list(mean=1,sd=2))
za.test(x,"lognorm",para = list(mean=1,sd=2))
za.test(x,"weibull",para = list(shape=1,scale=2))
za.test(x,"gamma",para = list(shape=2,scale=1))
za.test(x,"t",para = list(df=3))