-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrr-presentation.Rpres
More file actions
65 lines (43 loc) · 2.44 KB
/
rr-presentation.Rpres
File metadata and controls
65 lines (43 loc) · 2.44 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
reproducible research workshop
========================================================
author: Noushin Nabavi & Monica Granados
date:
autosize: true
learning outcomes
========================================================
- 1. explain what is reproducible research
- 2. tools that can help make research more reproducible
- 3. components of a reproducible project
- 4. use of rmarkdown for reproducible research
- 5. use of github for reproducible research
What is reproducible research
========================================================
- Reproducible research means that future you and anyone else will be able to pick up your analysis and reproduce the same results, including figures and tables.
- This implies well-documented research, well commented codes and documents and reasoning behind analyses
- Also, the communication aspect should not be an afterthought, it should be recorded with the analysis as you are going through it.
Rmarkdown is a way of literate programing that keeps code, words and sentences together. The ability to easily collaborate and share your analysis goes hand-in-hand with good record-keeping and reproducibility.
Reproducible research tools
========================================================
- Software tool: R / RStudio
- Communication tools: Markdown / Rmarkdown
- Version control tools: Git / Github
Markdown reproducible research
========================================================
Markdown or Rmardown (when built in R environment) is a way of literate programing that keeps code, words and sentences together.
The ability to easily collaborate and share your analysis goes hand-in-hand with good record-keeping and reproducibility.
Github reproducible research
========================================================
- We can repurpose the git version control tool and leverage the GitHub remote hosting provider for managing and sharing our work.
- Git + GitHub will provide a very powerful resource for global collaboration and exposure of your work.
- In this workshop, we are going to use version control our work and push it to github, which can then be accessed by your collaborators and supervisors.
- Git + GitHub should become an integral part of your workflow.
Making table summaries reproducible
========================================================
```{r}
summary(cars)
```
Making plots reproducible
========================================================
```{r, echo=FALSE}
plot(cars)
```