aov.circular(x, group, kappa = NULL,
method = c("F.test", "LRT"), F.mod = TRUE)
## S3 method for class 'aov.circular':
print(x, digits = max(3, getOption("digits") - 3), ...)
circular
.method
is "LRT"
. If left unspecified (by default)
the maximum likelihood estimate of kappa is computed and used in the test statistic.TRUE
, the AOV F-statistic is modified by a factor of 1+3/8k
to improve its approximate F distribution. Default is TRUE
.aov.circular
with the folowing components:method
is "F.test"
then the object contains also:method
is "F.test"
a high concentration F-test makes use
of a decomposition of total sample variation into between groups and within
groups variation, analogous to the one-way classification analysis of variance
for linear data. Stephens (1972) presented an improved modification to the
F-test derived from this decomposition. This is implemented when F.mod
is TRUE
.
A likelihood ratio test is performed when method
is "LRT"
. This
function uses the test statistic presented by Cordeiro, Paula, and Botter (1994) which has
an approximate chi-squared distribution. If the common concentration parameter
is known, it can be specified and used in the computation of the test statistic.
Otherwise, the maximum likelihood estimate of the common concentration parameter is used.x <- c(rvonmises(50, 0, 1), rvonmises(100, pi/3, 10))
group <- c(rep(0, 50), rep(1, 100))
aov.circular(x, group)
aov.circular(x, group, method="LRT")
Run the code above in your browser using DataLab