R/norm.1996AJB.R
norm.1996AJB.Rd
Given an univariate sample \(x\), it tests $$H_0 : x\textrm{ is from normal distribution} \quad vs\quad H_1 : \textrm{ not } H_0$$ using a test procedure by Urzua (1996), which is a modification of Jarque-Bera test.
norm.1996AJB(x, method = c("asymptotic", "MC"), nreps = 2000)
a length-\(n\) data vector.
method to compute \(p\)-value. Using initials is possible, "a"
for asymptotic for example.
the number of Monte Carlo simulations to be run when method="MC"
.
a (list) object of S3
class htest
containing:
a test statistic.
\(p\)-value under \(H_0\).
alternative hypothesis.
name of the test.
name(s) of provided sample data.
Urzúa CM (1996). “On the correct use of omnibus tests for normality.” Economics Letters, 53(3), 247--251. ISSN 01651765.
## generate samples from uniform distribution
x = runif(28)
## test with both methods of attaining p-values
test1 = norm.1996AJB(x, method="a") # Asymptotics
test2 = norm.1996AJB(x, method="m") # Monte Carlo