knitr::opts_chunk$set( collapse = TRUE, comment = "#>", fig.width = 7, fig.height = 5, fig.align = "center" )
The combined approach represents the most rigorous method for assessing clinical significance. It provides a more nuanced picture of patient outcomes by requiring two criteria to be met simultaneously:
This dual requirement allows for a richer classification of outcomes, distinguishing between patients who have merely "Improved" and those who have truly "Recovered". This vignette demonstrates how to use the cs_combined() function to apply these powerful models.
library(clinicalsignificance)
The most common combined method, proposed by Jacobson and Truax (1991), integrates the distribution-based and statistical approaches. A patient's change is considered clinically significant if:
We will again use the claus_2020 dataset. To perform this analysis, we need summary statistics for a functional (non-clinical) population on the BDI-II (m_functional, sd_functional) and an estimate of the instrument's reliability.
# Perform the JT combined analysis jt_combined <- claus_2020 |> cs_combined( id = id, time = time, outcome = bdi, pre = 1, post = 4, m_functional = 7.69, sd_functional = 7.52, reliability = 0.801 ) # Display the summary of results summary(jt_combined)
The plot for a combined analysis is particularly informative. It includes both the shaded area for reliable change (from the distribution-based approach) and the cutoff lines for population status (from the statistical approach).
plot(jt_combined, show_group = "category")
The resulting categories are interpreted as follows: - Recovered (blue): Patients who showed a reliable improvement and ended up in the functional range. - Improved (light green): Patients who showed a reliable improvement but remained in the clinical range. - Unchanged (yellow): Patients with no reliable change, regardless of their population status. - Deteriorated (orange): Patients who showed a reliable worsening but remained in the clinical range. - Harmed (dark green): Patients who showed a reliable worsening and moved from the functional to the clinical range.
As an alternative, clinicalsignificance allows you to combine the anchor-based and statistical approaches. This method is useful when a well-established Minimal Important Difference (MID) is available and may offer a more practically interpretable criterion for change than statistical reliability.
Here, a patient's change is clinically significant if: 1. The change is meaningful (i.e., it meets or exceeds the MID). 2. The patient's final score falls within the range of a functional population.
We use the same functional population data as before but replace the reliability argument with mid_improvement.
# Perform the anchor-based combined analysis anchor_combined <- claus_2020 |> cs_combined( id = id, time = time, outcome = bdi, pre = 1, post = 4, m_functional = 7.69, sd_functional = 7.52, mid_improvement = 7 ) # Display the summary of results summary(anchor_combined)
Notice the subtle shift in classifications: with the MID as the criterion, more patients are categorized as "Improved" or "Recovered" compared to the stricter reliability criterion of the JT approach in this specific example.
The plot is interpreted similarly, but the shaded area is now defined by the MID instead of the Reliable Change Index.
plot(anchor_combined, show_group = "category")
The combined approach offers a powerful and nuanced assessment of treatment outcomes by considering both the magnitude of change and the patient's final functional status.
Choosing between them depends on the available information (reliability vs. MID) and the specific research question.
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.