netmeta (version 1.2-1)

Linde2016: Network meta-analysis of primary care depression treatments

Description

Network meta-analysis of 22 treatments (including placebo and usual care) for the primary care of depression.

Arguments

Format

A data frame with the following columns:

id Study ID
lnOR Response after treatment (log odds ratio)
selnOR Standard error of log odds ratio
treat1 First treatment

See Also

netmeta, netcomb

Examples

Run this code
# NOT RUN {
data(Linde2016)

# Only consider studies including Face-to-face PST (to reduce
# runtime of example)
#
face <- subset(Linde2016, id %in% c(16, 24, 49, 118))

# Conduct random effects network meta-analysis
#
net1 <- netmeta(lnOR, selnOR, treat1, treat2, id,
                data = face, reference.group = "placebo",
                sm = "OR", comb.fixed = FALSE,
                nchar = 6)
#
summary(net1)

# }
# NOT RUN {
# Conduct random effects network meta-analysis
#
net2 <- netmeta(lnOR, selnOR, treat1, treat2, id,
                data = Linde2016, reference.group = "placebo",
                sm = "OR", comb.fixed = FALSE,
                nchar = 6)
#
summary(net2)
# }

Run the code above in your browser using DataCamp Workspace