-
Notifications
You must be signed in to change notification settings - Fork 192
/
index.Rmd
121 lines (76 loc) · 4.8 KB
/
index.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
---
title: "Doing Meta-Analysis in R"
subtitle: "A Hands-on Guide"
author:
- Mathias Harrer
- Pim Cuijpers
- Toshi A. Furukawa
- David D. Ebert
github-repo: "MathiasHarrer/Doing-Meta-Analysis-in-R"
site: bookdown::bookdown_site
output:
bookdown::gitbook:
config:
toc:
collapse: section
search: yes
fontsettings:
size: 2
split_by: section
includes:
after_body: banner.html
df_print: paged
theme: !expr bslib::bs_theme()
documentclass: book
bibliography: [book.bib, packages.bib]
biblio-style: apalike
link-citations: yes
twitter-handle: MathiasHarrer
description: "This is a guide on how to conduct Meta-Analyses in R."
favicon: "favicon.ico"
---
# Welcome! {-}
---
<a href="https://www.routledge.com/Doing-Meta-Analysis-with-R-A-Hands-On-Guide/Harrer-Cuijpers-Furukawa-Ebert/p/book/9780367610074" target="_blank"><img src="images/cover.png" width="250" align="right" alt="" class="cover" /></a> Welcome to the online version of **"Doing Meta-Analysis with R: A Hands-On Guide"**.
This book serves as an accessible introduction into how meta-analyses can be conducted in _R_. Essential steps for meta-analysis are covered, including pooling of outcome measures, forest plots, heterogeneity diagnostics, subgroup analyses, meta-regression, methods to control for publication bias, risk of bias assessments and plotting tools.
Advanced, but highly relevant topics such as network meta-analysis, multi-/three-level meta-analyses, Bayesian meta-analysis approaches, and SEM meta-analysis are also covered.
The programming and statistical background covered in the book are kept at a **non-expert level**. A **print version** of this book has been published with [Chapman & Hall/CRC Press](https://www.routledge.com/Doing-Meta-Analysis-with-R-A-Hands-On-Guide/Harrer-Cuijpers-Furukawa-Ebert/p/book/9780367610074) (Taylor & Francis).
<br></br>
## Open Source Repository {-}
---
This book has been built using [**{rmarkdown}**](https://rmarkdown.rstudio.com/docs/) and [**{bookdown}**](https://bookdown.org/). Formulas are rendered using [MathJax](http://docs.mathjax.org/en/latest/index.html). All materials and source code we used to compile the guide can be found on **GitHub**. You are free to fork, share and reuse contents. However, the repository is intended to be mainly "read-only"; PRs will generally not be considered (see section below & preface for ways to contact us).
[![GitHub followers](https://img.shields.io/badge/View Repository-100000?style=for-the-badge&logo=github&logoColor=white)](https://github.com/MathiasHarrer/Doing-Meta-Analysis-in-R)
<br></br>
## How To Use The Guide {-}
---
This tutorial provides a brief introduction to the guide and how to use it for your own meta-analysis project.
<center>
<iframe width="580" height="327" style="border-radius: 5px 5px 5px 5px; box-shadow: 0 0.5rem 1rem rgba(0,0,0,.15);" src="https://www.youtube.com/embed/i1b5c-dVfkU" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen>
</iframe>
</center>
<br></br>
## Contributing {-}
---
This guide is an open source project, and we owe special thanks to our expert contributors who provided additional content in some of the sections of this guide.
* [**Luke A. McGuinness**](https://twitter.com/mcguinlu), University of Bristol: Chapter 15, Risk of Bias Plots.
Want to contribute to this guide yourself? Feel free to send **Mathias** ([email protected]) an E-mail and tell us about your proposed additions.
<br></br>
## Citing this Guide {-}
---
The suggested citation is:
```{block, type='boxempty'}
Harrer, M., Cuijpers, P., Furukawa, T.A., & Ebert, D.D. (2021). _Doing Meta-Analysis with R: A Hands-On Guide_. Boca Raton, FL and London: Chapman & Hall/CRC Press. ISBN 978-0-367-61007-4.
```
Download the reference as [BibTeX](https://www.protectlab.org/meta-analysis-in-r/data/citation.bib) or [.ris](https://www.protectlab.org/meta-analysis-in-r/data/citation.ris).
<br></br>
## Cite the Packages {-}
---
In this guide, we present and use various _R_ packages. The reason why all of us can use these packages for free is because experts all around the world have devoted enormous time and effort to their development, typically without pay. If you use some of the packages mentioned in this book for your own meta-analysis, we strongly encourage you to also cite them in your report.
In this guide, every time a new package is introduced, we also provide the reference through which it can be cited. It is also possible to run `citation("package")` to retrieve the preferred reference. Thanks!
<br></br>
```{r include=FALSE}
# automatically create a bib database for R packages
knitr::write_bib(c(
.packages(), 'bookdown', 'knitr', 'rmarkdown'
), 'packages.bib')
```