cronbach.alpha.CI {cocron} | R Documentation |
Confidence interval for Cronbach's Alpha
Description
Calculates a confidence interval for Cronbach's alpha (Cronbach, 1951).
Usage
cronbach.alpha.CI(alpha, n, items, conf.level = 0.95)
Arguments
alpha |
A numeric specifying the alpha coefficient. |
n |
A numeric defining the number of individuals who provided the data for the test for which the alpha coefficient was determined. |
items |
A numeric specifying the number of items the alpha coefficient is based on. |
conf.level |
A number defining the level of confidence for the confidence interval (default is |
Details
The lower bound of a confidence interval for an that is based on the data of
individuals who responded to
items is defined as
where is the level of confidence and
the
percentile of the F-distribution with
and
(Feldt,
Woodruff, & Salih, 1987, p. 95, formula 6).
The upper bound of the confidence interval is computed as
(Feldt et al., 1987, p. 95, formula 7).
Value
Returns a confidence interval for Cronbach's alpha as a numeric vector.
References
Cronbach, L. J. (1951). Coefficient alpha and the internal structure of tests. Psychometrika, 16, 297-334.
Feldt, L. S., Woodruff, D. J., & Salih, F. A. (1987). Statistical inference for coefficient alpha. Applied Psychological Measurement, 11, 93-103.
See Also
Examples
cronbach.alpha.CI(alpha=.83, n=100, items=20, conf.level=.95)