-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmethodsDay2017_presentation.Rmd
More file actions
76 lines (55 loc) · 1.89 KB
/
methodsDay2017_presentation.Rmd
File metadata and controls
76 lines (55 loc) · 1.89 KB
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
---
title: "Using RMarkdown to create scientific manuscripts"
author: "Jörn Alexander Quent"
date: "5 December 2017"
output: ioslides_presentation
css: styles.css
---
```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = FALSE)
```
## Introduction
- R is an open source programming language for statistics and data visualisation.
- Markdown is a lightweight markup language.
##RMarkdown workflow

##Pros
* Easy to share whole code used for analysis with the public and journals.
* Helps to achieve higher reproducibility with respect to analysis.
* Many manuscripts contain erroneous statistics (see statcheck; Nuijten et al., 2016).
* RMarkdown helps to track and avoid mistakes:
* Rounding _p_-value,
* Copy & paste errors,
* Forgetting to up update statistic.
##Cons
* Sometimes things might go wrong when you try to switch between output formats (e.g. from .pdf to .html).
* You will frequently find yourself that you need to ask for help for more intricate stuff for instance on [https://stackoverflow.com](https://stackoverflow.com).
* List of references can only be generated at the end of the script.
##YAML header

## R Chunks

##Analysis

##Reporting statistics


##Graphics

##Graphics

##Tables


##Formulas

##Citation

##Citation

##Citation

## Thank you
- If you need help, send me an e-mail Alex.Quent at mrc-cbu.cam.ac.uk.
- Scripts, presentation etc. available on [https://github.com/JAQuent/methodsDay2017](https://github.com/JAQuent/methodsDay2017).
# Questions?