Variance.R2 | R Documentation |
Function to determine the variance of the squared multiple correlation coefficient given the population squared multiple correlation coefficient, sample size, and the number of predictors.
Variance.R2(Population.R2, N, p)
Population.R2 |
population squared multiple correlation coefficient |
N |
sample size |
p |
the number of predictor variables |
Uses the hypergeometric function as discussed in and section 28 of Stuart, Ord, and Arnold (1999) in order to obtain the correct value for the variance of the squared multiple correlation coefficient.
Returns the variance of the of the squared multiple correlation coefficient.
Uses package gsl
and its hyperg_2F1
function.
Ken Kelley (University of Notre Dame; KKelley@ND.Edu)
Stuart, A., Ord, J. K., & Arnold, S. (1999). Kendall's advanced theory of statistics: Classical inference and the linear model (Volume 2A, 2nd Edition). New York, NY: Oxford University Press.
Expected.R2
, ci.R2
, ss.aipe.R2
# library(gsl)
# Variance.R2(.5, 10, 5)
# Variance.R2(.5, 25, 5)
# Variance.R2(.5, 50, 5)
# Variance.R2(.5, 100, 5)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.