estimate_rel_sb | R Documentation |
This function implements the Spearman-Brown prophecy formula for estimating the reliability of a lengthened (or shortened) measure. The formula implemented here assumes that all items added to (or subtracted from) the measure will be parallel forms of the original items.
estimate_rel_sb(rel_initial, k)
rel_initial |
Initial reliability of a measure. |
k |
The number of times by which the measure should be lengthened (if k > 1) or shortened (if k < 1), assuming that all new items are parallel forms of initial items. |
This is computed as:
\rho_{XX}^{*}=\frac{k\rho_{XX}}{1+(k-1)\rho_{XX}}
where \rho_{XX}
is the initial reliability, k is the multiplier by which the measure is to be lengthened (or shortened), and \rho_{XX}^{*}
is the predicted reliability of a measure with a different length.
The estimated reliability of the lengthened (or shortened) measure.
Ghiselli, E. E., Campbell, J. P., & Zedeck, S. (1981). Measurement theory for the behavioral sciences. San Francisco, CA: Freeman. p. 232.
## Double the length of a measure with an initial reliability of .7
estimate_rel_sb(rel_initial = .7, k = 2)
## Halve the length of a measure with an initial reliability of .9
estimate_rel_sb(rel_initial = .9, k = .5)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.