Learn R Programming

bayesmeta (version 3.4)

KarnerEtAl2014: COPD example data

Description

Data on several endpoints from a systematic review in chronic obstructive pulmonary disease (COPD).

Usage

data("KarnerEtAl2014")

Arguments

Format

The data frame contains the following columns:

studycharacterpublication identifier (first author and publication year)
yearnumericpublication year
durationfactorstudy duration (\(<1\) year vs. \(\geq 1\) year)
inhalerfactortype of inhaler investigated (“dry powder” or “soft mist”)
baseline.agenumericmean age at baseline
baseline.malesnumericproportion of males among study participants
baseline.fev1numericmean FEV1 at baseline (L)
baseline.fev1ppnumericmean FEV1 (percent of predicted) at baseline
baseline.pyrnumericmean number of pack-years (smoking history)
tiotropium.totalnumerictotal number of patients in the treatment group
tiotropium.exanumericnumber of patients with \(\geq 1\) exacerbation in the treatment group
tiotropium.sexanumericnumber of patients with \(\geq 1\) severe exacerbation in the treatment group
tiotropium.hospinumericnumber of patients with \(\geq 1\) hospitalisation (all-cause) in the treatment group
tiotropium.deathsnumericnumber of deaths in the treatment group
tiotropium.saenumericnumber of patients with \(\geq 1\) serious adverse event (non-fatal) in the treatment group
tiotropium.dropoutnumericnumber of withdrawals in the treatment group
placebo.totalnumerictotal number of patients in the control group
placebo.exanumericnumber of patients with \(\geq 1\) exacerbation in the control group
placebo.sexanumericnumber of patients with \(\geq 1\) severe exacerbation in the control group
placebo.hospinumericnumber of patients with \(\geq 1\) hospitalisation (all-cause) in the control group
placebo.deathsnumericnumber of deaths in the control group
placebo.saenumericnumber of patients with \(\geq 1\) serious adverse event (non-fatal) in the control group
placebo.dropoutnumericnumber of withdrawals in the control group
sgrq.md, sgrq.senumericmean difference and associated standard error for St. George's respiratory questionnaire (SGRQ) total score
fev1.md, fev1.senumericmean difference and associated standard error for forced expiratory volume in 1 second (FEV1, mL)

Details

Chronic obstructive pulmonary disease (COPD) is a chronic and progressive condition characterized by recurrent exacerbation phases. Various treatment options are available, aimed at both providing relief during an acute exacerbation, and at delaying overall disease progression. A common drug used in the management of COPD is tiotropium, a long-acting muscarinic antagonist (LAMA), which is administered via an inhaler device.

Karner et al. (2014) conducted a systematic review in order to evaluate the evidence on the effects of tiotropium in comparison to placebo. 22 placebo-controlled studies were found, and a range of endpoints and subgroups were considered. The data reproduced here relate to analyses 1.1, 1.9, 1.14, 1.15, 1.19, 1.26, 1.27 and 1.28 in the original investigation. A number of study-level covariables are also provided.

Examples

Run this code
data("KarnerEtAl2014")
if (FALSE) {
# compute effect sizes (log odds ratios) from exacerbation count data
# (using the "metafor" package's "escalc()" function):
karner.exa <- escalc(measure="OR",
                     ai=tiotropium.exa, n1i=tiotropium.total,
                     ci=placebo.exa,    n2i=placebo.total,
                     slab=study, data=KarnerEtAl2014)
# show forest plot:
forestplot(karner.exa, title="exacerbation",
           exponentiate=TRUE, xlog=TRUE,
           xlab="odds ratio")

# derive St. George's Respiratory Questionnaire (SGRQ) effect sizes:
karner.sgrq <- escalc(measure="MD",
                      yi=sgrq.md, sei=sgrq.se,
                      slab=study, data=KarnerEtAl2014,
                      subset=is.finite(KarnerEtAl2014$sgrq.md))
# show forest plot:
forestplot(karner.sgrq, title="SGRQ",
           xlab="mean difference")

}

Run the code above in your browser using DataLab