Network meta-analysis of primary care depression treatments
Network meta-analysis of 22 treatments (including placebo and usual care) for the primary care of depression.
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 |
treat2 | Second treatment |
Linde K, Rücker G, Schneider A et al. (2016): Questionable assumptions hampered interpretation of a network meta-analysis of primary care depression treatments. Journal of Clinical Epidemiology, 71, 86–96
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) ## End(Not run)
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.