Description Usage Arguments Value Author(s) References See Also Examples
This function computes the confidence interval for a given correlation and its sample size. This is useful to obtain confidence intervals for correlations reported in papers when informing power analyses.
1 |
r |
The observed correlation coefficient. |
N |
The sample size of the sample where the correlation was computed. |
conf.level |
The desired confidence level of the confidence interval. |
plot |
Whether to show a plot of the hypothesized sampling distribution (assuming the sample value happens to be the population value) of Pearson's r. |
The confidence interval(s) in a matrix with two columns. The left column contains the lower bound, the right column the upper bound. The rownames
are the observed correlations, and the colnames
are 'lo' and 'hi'. The confidence level and sample size are stored as attributes. The results are returned like this to make it easy to access single correlation coefficients from the resulting object (see the examples).
Douglas Bonett (UC Santa Cruz, United States), with minor edits by Murray Moinester (Tel Aviv University, Israel) and Gjalt-Jorn Peters (Open University of the Netherlands, the Netherlands).
Maintainer: Gjalt-Jorn Peters <gjalt-jorn@userfriendlyscience.com>
Bonett, D. G., Wright, T. A. (2000). Sample size requirements for estimating Pearson, Kendall and Spearman correlations. Psychometrika, 65, 23-28.
Bonett, D. G. (2014). CIcorr.R and sizeCIcorr.R http://people.ucsc.edu/~dgbonett/psyc181.html
Moinester, M., & Gottfried, R. (2014). Sample size estimation for correlations with pre-specified confidence interval. The Quantitative Methods of Psychology, 10(2), 124-130. http://www.tqmp.org/RegularArticles/vol10-2/p124/p124.pdf
Peters, G. J. Y. & Crutzen, R. (forthcoming) An easy and foolproof method for establishing how effective an intervention or behavior change method is: required sample size for accurate parameter estimation in health psychology.
1 2 3 4 5 6 7 8 9 10 11 12 |
### To request confidence intervals for one correlation
confIntR(.3, 100);
### The lower bound of a single correlation
confIntR(.3, 100)[1];
### To request confidence intervals for multiple correlations:
confIntR(c(.1, .3, .5), 250);
### The upper bound of the correlation of .5:
confIntR(c(.1, .3, .5), 250)['0.5', 'hi'];
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.