perm.f.test {jmuOutlier} | R Documentation |
Permutation Test on the F-statistic
Description
A permutation F-test is performed, and a one-way analysis of variance F-test is performed.
Usage
perm.f.test(response, treatment = NULL, num.sim = 20000)
Arguments
response |
Numeric vector of responses if treatment is not |
treatment |
Vector of treatments, which need not be numerical.
If |
num.sim |
The number of simulations performed.
If |
Details
The one-way analysis of variance F-test is performed, regardless of the value of num.sim
.
The permutation F-test is performed whenever num.sim
is at least 1.
The p-value of the permutation F-test is estimated by randomly generating the permutations,
and is hence not exact.
The larger the value of num.sim
the more precise the estimate of
the p-value of the permutation F-test, but also the greater the computing time.
Thus, the p-value of the permutation F-test is not based on asymptotic approximation.
Value
The output consists of results from calling aov
and from the permutation F-test.
Note
The formulas computed within perm.f.test
are based on the textbook by Higgins (2004).
Author(s)
Steven T. Garren, James Madison University, Harrisonburg, Virginia, USA
References
Higgins, J. J. (2004) Introduction to Modern Nonparametric Statistics.
See Also
Examples
perm.f.test( c( 14,6,5,2,54,7,9,15,11,13,12 ), rep( c("I","II","III"), c(4,4,3) ) )