Classifies bronchodilator response (BDR) by the percent change in the measured value relative to the patient's predicted value, as recommended by Stanojevic et al. ERJ 2022. Significant BDR is defined as a post-bronchodilator increase of more than 10% of the predicted value in either FEV1 or FVC. This replaces the 2005 standard, which used a >=12% AND >=200 mL change from baseline.
Arguments
- pre, post
Numeric vectors of pre- and post-bronchodilator measurements (same units, same length).
- predicted
Numeric vector of predicted (median) values for the same measure, typically the
<measure>_predcolumn from a previous call topft_spirometry().- threshold
Percent-of-predicted change considered significant. Defaults to 10 (the Stanojevic 2022 criterion).
Value
A data frame with one row per input observation and columns:
pct_pred_change:(post - pre) / predicted * 100.is_significant: logical,TRUEwhenpct_pred_change > threshold.NAis propagated wherever any ofpre,post,predictedisNA.
Column naming
This function's pct_pred_change column is percent-of-predicted
change (the 2022 criterion). The predecessor pft_bdr_2005() emits a
similarly-named but different column, pct_change, which is
percent-of-baseline change ((post - pre) / pre * 100, the 2005
criterion). The two functions deliberately use distinct column names
so a result frame can carry both without ambiguity.
References
Stanojevic S, Kaminsky DA, Miller MR, et al. ERS/ATS technical standard on interpretive strategies for routine lung function tests. Eur Respir J. 2022;60(1):2101499. doi:10.1183/13993003.01499-2021 . See the "Bronchodilator responsiveness testing" section.
See also
pft_spirometry() to obtain the predicted FEV1 / FVC values
used as the denominator. pft_interpret() runs BDR automatically
when <measure>_pre and <measure>_post columns are present.
