Est.true | R Documentation |
Given the mean and reliability of a test, this function estimates the true score based on an observed score. The estimation is accounting for regression to the mean
Est.true(obs, mx, rxx)
obs |
an observed score on test x |
mx |
mean of test x |
rxx |
reliability of test x |
The estimated true score (that) is computed as
that <- mx*(1-rxx)+rxx*obs
When the obs score is much higher than the mean, the that < obs
When the obs score is much lower than the mean, that > obs
Estimated True score
Thomas D. Fletcher t.d.fletcher05@gmail.com
Dudek, F. J. (1979). The continuing misinterpretation of the standard error of measurement. Psychological Bulletin, 86, 335-337.
CI.tscore
, SE.Est
# Examples from Dudek (1979)
# Suppose a test has mean = 500, SD = 100 rxx = .9
# If an individual scores 700 on the test
Est.true(700, 500, .9)
# If an individual scores 400 on the test
Est.true(400, 500, .9)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.