ss.power.R2 | R Documentation |
Function for determining the necessary sample size for the test of the squared multiple correlation coefficient or for determining the statistical power given a specified sample size for the squared multiple correlation coefficient in models where the regressors are regarded as fixed.
ss.power.R2(Population.R2 = NULL, alpha.level = 0.05, desired.power = 0.85,
p, Specified.N = NULL, Cohen.f2 = NULL, Null.R2 = 0,
Print.Progress = FALSE, ...)
Population.R2 |
Population squared multiple correlation coefficient |
alpha.level |
Type I error rate |
desired.power |
desired degree of statistical power |
p |
the number of predictor variables |
Specified.N |
the sample size used to calculate power (rather than determine necessary sample size) |
Cohen.f2 |
Cohen's (1988) effect size for multiple regression: |
Null.R2 |
value of the null hypothesis that the squared multiple correlation will be evaluated against (this will typically be zero) |
Print.Progress |
if the progress of the iterative procedure is printed to the screen as the iterations are occuring |
... |
possible additional parameters for internal functions |
Determine the necessary sample size given a particular Population.R2
, alpha.level
, p
, and desired.power
. Alternatively, given Population.R2
, alpha.level
, p
, and Specified.N
, the function can be used to determine the statistical power.
Sample.Size |
returns either |
Actual.Power |
Actual power of the situation described |
When determining sample size for a desired degree of power, there will always be a slightly larger degree of actual power. This is the case because the algorithm employed determines sample size until the actual power is no less than the desired power (given sample size is a whole number power will almost certainly not be exactly the specified value). This is the same as other statistical power procedures that return whole numbers for necessary sample size.
Ken Kelley (University of Notre Dame; KKelley@ND.Edu)
ss.aipe.R2
, ss.power.reg.coef
, conf.limits.ncf
# ss.power.R2(Population.R2=.5, alpha.level=.05, desired.power=.85, p=5)
# ss.power.R2(Cohen.f2=1, alpha.level=.05, desired.power=.85, p=5)
# ss.power.R2(Population.R2=.5, Specified.N=15, alpha.level=.05,
# desired.power=.85, p=5)
# ss.power.R2(Cohen.f2=1, Specified.N=15, alpha.level=.05, desired.power=.85, p=5)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.