The rest of this is purely here for historical completeness. Hm, except that final caveat which really is spot on and I'd forgotten that neat wording. Please read it and take it to heart!
and modified after a correction first published by:
Christensen, L. & Mendoza, J. L. (1986).
"A method of assessing change in a single subject: an alteration of the RC index."
Behavior Therapy 17: 305-308.
The best early summary of the method is:
Jacobson, N. S. & Truax, P. (1991).
"Clinical significance: a statistical approach to defining meaningful change in psychotherapy research."
Journal of Consulting and Clinical Psychology 59(1): 12-19 and our own paper:
Evans, C., Margison, F. & Barkham, M. (1998) The contribution of reliable and clinically significant change methods to evidence-based mental health Evidence Based Mental Health 1:70-72 is another readable introduction.
Reliable Change (RC) is about whether people changed sufficiently that the change is unlikely to be due to simple measurement unreliability. You determine who has changed reliably (i.e. more than the unreliability of the measure would suggest might happen for 95% of subjects) by seeing if the difference between the follow-up and initial scores is more than a certain level. That level is a function of the initial standard deviation of the measure and its reliability. If you only have a few observations it will be best to find some typical data reported for the same measure in a service as similar as possible to yours. The reliability parameter to use is up to you. Using Cronbach's alpha or another parameter of internal consistency is probably the most theoretically consistent approach since the theory behind this is classical reliability theory. By contrast a test-retest reliability measure always includes not only simple unreliability of the measure but also any real changes in whatever is being measured. This means that internal reliability is almost always higher than test-retest and will generally result in more people being seen to have changed reliably.
Thus using a test-retest reliability correlation introduces a sort of historical control, i.e. the number showing reliable change can be compared with 5% that would have been expected to show that much change over the retest interval if there had been no intervention.
I recommend using coefficient alpha determined in your own data but if you can't get that then I'd use published coefficient alpha values for the measure, preferably from a similar population.
The formula for the standard error of change is:
SD1*sqrt(2)*sqrt(1-rel)where SD1 is the initial standard deviation
The formula for criterion level, based on change that would happen less than 5% of the time by unreliability of measurement alone, is:
1.96*SD1*sqrt(2)*sqrt(1-rel)Back in or before 1998 I wrote a little Perl program to calculate this which people could use via a form on this site but that's now replaced by https://shiny.psyctc.org/apps/RCI1/ my shiny RCI app. As noted above, you might also want to look at https://shiny.psyctc.org/apps/RCI2/ which gives a "plausible interval" around the point RCI value. That is roughly equivalent to a confidence interval and is based on the standard error of the standard deviation. It can be a very useful cautionary note about how imprecisely the RCI is likely to have been estimated: not very precisely unless your n is very large.:
However, there is a final twist on their method (C) which is what you do if the s.d.s for the "problem"
and the "normal" groups are not equal. They suggest you take the distance of the criterion from the
"problem" and "normal" means in terms of the pertinent s.d.s, i.e.:
(crit_c - mean(patients))/stdev(patients) = (mean(normative data) - crit_c)/stdev(normative data)
(if the measure is a "health" measure i.e. higher scores, better state)
this gives:
crit_c = (stdev(normative data)*mean(patients) + stdev(patients)*mean(normative data))/(stdev(normative data) + stdev(patients))
(this is the same whether the measure is positively, i.e. health, tuned, or negatively, i.e. problem, tuned).
Again, I wrote little perl and R programs over 20 years ago now and again I have replaced these by a shiny app: https://shiny.psyctc.org/apps/CSC1/. As well as giving you the CSC it also shows the plot of the Gaussian model on which the CSC is based. As with the RCI shiny apps, the CSC app also explains the background far better than the old Perl/HTML pages did, and it introduces you to my other shiny apps.