
Compute power of test or determine parameters to obtain target power (same as power.anova.test).
pwr.anova.test(k = NULL, n = NULL, f = NULL, sig.level = 0.05, power = NULL)
Number of groups
Number of observations (per group)
Effect size
Significance level (Type I error probability)
Power of test (1 minus Type II error probability)
Object of class '"power.htest"', a list of the arguments (including the computed one) augmented with 'method' and 'note' elements.
Exactly one of the parameters 'k','n','f','power' and 'sig.level' must be passed as NULL, and that parameter is determined from the others. Notice that the last one has non-NULL default so NULL must be explicitly passed if you want to compute it.
Cohen, J. (1988). Statistical power analysis for the behavioral sciences (2nd ed.). Hillsdale,NJ: Lawrence Erlbaum.
power.anova.test
# NOT RUN {
## Exercise 8.1 P. 357 from Cohen (1988)
pwr.anova.test(f=0.28,k=4,n=20,sig.level=0.05)
## Exercise 8.10 p. 391
pwr.anova.test(f=0.28,k=4,power=0.80,sig.level=0.05)
# }
Run the code above in your browser using DataLab