forked from MathiasHarrer/Doing-Meta-Analysis-in-R
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.Rmd
115 lines (85 loc) · 4.38 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
---
title: "Doing Meta-Analysis in R"
subtitle: "A Hands-on Guide"
author:
- Mathias Harrer, B.Sc.¹
- Prof. Dr. Pim Cuijpers²
- Prof. Dr. Toshi A. Furukawa³
- Assoc. Prof. Dr. David D. Ebert²
date: "¹Friedrich-Alexander-University Erlangen-Nuremberg, ²Vrije Universiteit Amsterdam, ³Kyoto University"
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
documentclass: book
bibliography: [book.bib, packages.bib]
biblio-style: apalike
link-citations: yes
description: "This is a guide on how to conduct Meta-Analysis in R."
favicon: "favicon.ico"
---
# About this Guide

```{block,type='rmdinfo'}
This guide shows you how to conduct Meta-Analyses in R from scratch. The focus of this guide is primarily on clinical outcome research in psychology. It is designed for staff and collaborators of the [**PROTECT Lab**](https://www.protectlab.org), which is headed by **Dr. David D. Ebert**.
```
<br></br>
<img width="40%" src="protectlogo.PNG"/>
<img width="15%" src="hexagon.png"/>
---
**The guide will show you how to:**
* Get **R** and **RStudio** set for your Meta-Analysis
* Get your data into R
* **Prepare your data** for the meta-analysis
* Perform **fixed-effect** and **random-effects** meta-analysis using the `meta` and `metafor`packages
* Analyse the **heterogeneity** of your results
* Tackle heterogeneity using **subgroup analyses** and **meta-regression**
* Check if **selective outcome reporting (publication bias)** is a present in your data
* Control for selective outcome reporting and publication bias
* Analyse the **risk of bias** in your data
* Do advanced types of meta-analyses, such as
+ **network analyses** or
+ meta-analyses with **more than one outcome**
---
**What this guide will not cover**
Although this guide will provide some information on the statistics behind meta-analysis, it will not give you an **in-depth introduction** into how meta-analyses are calculated statistically.
It is also beyond the scope of this guide to advise in detail which meta-analytical strategy is suited best in which contexts, and on how the search, study inclusion and reporting of meta-analyses should be conducted. The [*Cochrane Handbook for Systematic Reviews of Interventions*](http://handbook-5-1.cochrane.org/), however, should be a great source to find more information on these topics.
---
**Generally, there a two other sources to recommended when conducting Meta-Analyses:**
* If you're looking for a easily digestable, hands-on introduction on how Meta-Analyses are conducted, we can recommend **Pim Cuijpers' online courses on Meta-Analysis**. The courses are freely available on YouTube. To have a look, click [here](https://www.youtube.com/watch?v=pP7_VBrG_TY&list=PL-h5cI5Bkvt0J-O0kq_9J9_aksWFPgR7s).
* If you're interested in more details on how to conduct Meta-Analyses in R, you can either have a look at Wolfgang Viechtbauer's page for the `metafor` package ([Link](http://metafor-project.org)). Or you can consult a book on the `meta` package which was recently published [@schwarzer2015meta].
<br><br>
````{block,type='rmdinfo'}
**How to get the R code for this guide**

All code behind this book is available online on **GitHub**. We have created a website containing a **download link** for all codes, and a **quick guide** on how to get the code running on your computer. The site can be found [here](https://mathiasharrer.github.io/Doing-Meta-Analysis-in-R/).
```
<br><br>
**How to cite this guide**
Harrer, M., Cuijpers, P., Furukawa, T.A, & Ebert, D. D. (2019). Doing Meta-Analysis in R: A Hand-on Guide. [https://bookdown.org/MathiasHarrer/Doing_Meta_Analysis_in_R/](https://bookdown.org/MathiasHarrer/Doing_Meta_Analysis_in_R/).
[](https://zenodo.org/badge/latestdoi/152492192)
```{r eval=FALSE, echo=FALSE}
install.packages("bookdown")
# or the development version
# devtools::install_github("rstudio/bookdown")
```
---
**To get started, proceed to the next chapter!**
---
<br><br>
```{r include=FALSE}
# automatically create a bib database for R packages
knitr::write_bib(c(
.packages(), 'bookdown', 'knitr', 'rmarkdown'
), 'packages.bib')
```