-
Notifications
You must be signed in to change notification settings - Fork 1
/
ReproducibleScience.Rmd
707 lines (356 loc) · 10.8 KB
/
ReproducibleScience.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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
---
title: |
| Doing reproducible science:
| from your hard-won data
| to a publishable manuscript
| without going mad
author: "Francisco Rodriguez-Sanchez (@frod_san)"
date: "February 2017"
fontsize: 11pt
output:
beamer_presentation:
df_print: kable
fig_caption: no
fig_height: 5
fig_width: 6
includes:
in_header: header.tex
latex_engine: pdflatex
slide_level: 2
theme: metropolis
---
```{r knitr_setup, include=FALSE, cache=FALSE}
library(knitr)
### Chunk options ###
## Text results
opts_chunk$set(echo = FALSE, warning = FALSE, message = FALSE, eval = TRUE, size = 'footnotesize')
## Code decoration
opts_chunk$set(tidy = FALSE, comment = NA, highlight = TRUE, prompt = FALSE, crop = TRUE)
# ## Cache
opts_chunk$set(cache = TRUE, cache.path = "knitr_output/cache/")
# ## Plots
opts_chunk$set(fig.path = "knitr_output/figures/")
opts_chunk$set(fig.align = 'center')
### Hooks ###
## Crop plot margins
knit_hooks$set(crop = hook_pdfcrop)
## Reduce font size
# see http://stackoverflow.com/a/39961605
knit_hooks$set(smallfont = function(before, options, envir) {
if (before) return(paste0("\n \\", options$size, "\n\n"))
else return("\n\n \\normalsize \n")
})
```
## A typical research workflow
\begincols
\begincol
1. Prepare data (**EXCEL**)
\endcol
\begincol
![](images/excel.png)
\endcol
\endcols
## A typical research workflow
\begincols
\begincol
1. Prepare data (**EXCEL**)
2. Analyse data (**R**)
\endcol
\begincol
![](images/rstudio.png)
\endcol
\endcols
## A typical research workflow
\begincols
\begincol
1. Prepare data (**EXCEL**)
2. Analyse data (**R**)
3. Write report/paper (**WORD**)
\endcol
\begincol
![](images/word.png)
\endcol
\endcols
## A typical research workflow
\begincols
\begincol
1. Prepare data (**EXCEL**)
2. Analyse data (**R**)
3. Write report/paper (**WORD**)
4. Start the email attachments **nightmare**...
\endcol
\begincol
```{r out.height='3in', out.width='2in'}
include_graphics("images/emailmeme.jpg")
```
\endcol
\endcols
## This workflow is broken
![](images/workflow.png)
## Problems of a broken workflow
> - How did you do this? What analysis is behind this figure? Did you account for ...?
> - What dataset was used? Which individuals were left out? Where is the clean dataset?
> - Oops, there is an error in the data. Can you repeat the analysis? And update figures/tables in Word!
----
```{r out.height='3in', out.width='4in'}
include_graphics("images/trevor_tweet.png")
```
## Our everyday scary movie
https://youtu.be/s3JldKoA0zw
# WHAT is Reproducible Science?
## Reproducible Science: WHAT
A scientific article is **reproducible** if there is computer **code** that can **regenerate** all results and figures from the original data.
- Transparent
- Traceable
- Comprehensive
- Useful
## Most science is not reproducible
```{r out.width='4in', out.height='3in'}
include_graphics("images/Reproducibility_gradient.png")
```
Even **you** will struggle to reproduce **your own results** from a few weeks/months ago.
----
> You can't reproduce if you don't understand where a number came from.
You can't reproduce what you don't remember. And trust me: you won't.
You can't reproduce what you've lost. What if you need access to a file as it existed 1, 10, 100, or 1000 days ago?
> *Ben Bond-Lamberty*
# WHY Reproducible Science?
----
```{r}
include_graphics("images/xkcd_repro.jpg")
```
\scriptsize
Carole Goble http://www.slideshare.net/carolegoble/ismb2013-keynotecleangoble
\normalsize
----
```{r}
include_graphics("images/noamross_tweet.jpg")
```
## Reproducible Science: WHY
> - Fundamental pillar of **scientific method**
> - Much less prone to **errors**
> - Regenerate results **automatically**
> - **Code reuse** & sharing accelerates scientific progress
> - Increasingly required by **journals**
> - Higher publication **impact** (citations, future collaborations, etc)
# HOW TO DO Reproducible Science?
## Reproducible Science: HOW
1. File **organisation**.
2. **Data management**. Spreadsheet good practices.
3. **Code-based** data analysis. **Rmarkdown**
4. Software **dependencies**.
5. **Version control** & collaborative writing.
## File organisation
> - All files in **same directory** (Rstudio project).
> - **Raw data untouched** in independent folder.
> - Derived, **clean data** in another folder.
> - Figures, code, etc also have their own folder.
## File organisation example
```
myproject
|- README # general info about the project
|- analysis.R # master script that executes everything
|- data-raw/ # original raw data
|- data/ # clean data (produced w/ script)
|- R/ # functions definitions
|- doc/ # manuscript files
|- figs/ # final figures
|- output/ # other code output
```
# Data management
```{r eval=FALSE}
## Data management
1. Planification (e.g. [DMPTool](https://dmptool.org/))
2. Collection
3. Metadata description (EML, [Morpho](http://knb.ecoinformatics.org/morphoportal.jsp))
4. Quality control
5. Storage
```
----
```{r}
include_graphics("images/stolendata.png")
```
\scriptsize
http://science.sciencemag.org/content/354/6317/1242.1
\normalsize
## Storage
Use the **cloud**: safe, persistent, easy to share
- Dropbox
- OSF
- Figshare, etc
- See all data repositories in www.re3data.org
## Tidy data
```{r out.height='2.5in', out.width='4in'}
include_graphics("images/tidydata.png")
```
```{r out.height='2.5in', out.width='4in'}
include_graphics("images/gatherdata.png")
```
\scriptsize
http://r4ds.had.co.nz/tidy.html
\normalsize
## Spreadsheet good practices
\scriptsize
> - Put **variables** in **columns** (things you are measuring: height, weight, sex)
> - Each **observation** in one **row** (e.g. individuals).
> - Avoid spaces, numbers, and special characters in column names.
> - Always write zero values, to distinguish from blank/missing data.
> - Use blank/empty cells, or NA, for missing data.
> - Input dates as year, month, day in separate columns. Or YYYY-MM-DD as text.
> - Use 'Data validation' in Excel to constrain data entry to accepted values.
> - Don't combine multiple pieces of information in one cell.
> - Don't touch raw data. Do all data manipulation with R code.
> - Export data as plain text (txt, csv)
> - http://www.datacarpentry.org/spreadsheet-ecology-lesson/
> - http://kbroman.org/dataorg/
\normalsize
```{r eval=FALSE}
# Common spreadsheet errors
## More than one variable per column
\begincols
\begincol
![](http://www.datacarpentry.org/spreadsheet-ecology-lesson/fig/multiple-info.png)
\endcol
\begincol
![](http://www.datacarpentry.org/spreadsheet-ecology-lesson/fig/single-info.png)
\endcol
\endcols
Source: Data Carpentry
## Multiple tables
![](http://www.datacarpentry.org/spreadsheet-ecology-lesson/fig/2_datasheet_example.jpg)
## Multiple tabs
Could you avoid new tab by adding a column to original spreadsheet?
## Using formatting, comments, etc to convey information
\begincols
\begincol
![](http://www.datacarpentry.org/spreadsheet-ecology-lesson/fig/formatting.png)
\endcol
\begincol
![](http://www.datacarpentry.org/spreadsheet-ecology-lesson/fig/good_formatting.png)
\endcol
\endcols
----
Your turn: tidy up this messy dataset
https://ndownloader.figshare.com/files/2252083
```
# Data analysis
## Always use code
- Reproducible
- Reusable
## Dynamic reports
![](images/integrated_workflow.png)
## Rmarkdown documents
* Fully reproducible (trace all results inc. tables and plots)
* Dynamic (regenerate with 1 click)
* Suitable for
+ documents (Word, PDF, etc)
+ presentations
+ books
+ websites
+ ...
```{r out.height='2in', out.width='2in'}
include_graphics("images/rmarkdown.png")
```
## Let's see Rmarkdown in action
In Rstudio, create new Rmarkdown document and click on `Knit HTML`.
## Example: Does sunshine influence happiness?
See [myproject.Rmd](myproject.Rmd) (http://bit.ly/rmdsun)
![](images/myproject.png)
## HTML output includes text, plot and formatted table
![](images/html_output.png)
## Spotted error in the data? No problem!
Make changes in Rmarkdown document, click `knit` and report will **update automatically!**
## Other formats: PDF, Word
\begincols
\begincol
![](images/pdf_output.png)
\endcol
\begincol
![](images/word_output.png)
\endcol
\endcols
```{r eval=FALSE}
## Adding citations
![](images/citation_Rmd.png)
See [output](myproject_citations.html)
![](images/references.png)
```
## Adding citations by DOI
rcrossref addin
```{r out.width='4in', out.height='3in'}
include_graphics("images/rcrossref.jpg")
```
## Adding citations from BibTeX file
citr addin
```{r out.width='4in', out.height='3in', eval=FALSE}
include_graphics("images/citr.gif")
```
https://github.com/crsh/citr/
## Manuscript templates
- [rticles](https://github.com/rstudio/rticles)
- [rmdTemplates](https://github.com/Pakillo/rmdTemplates)
## Can write full thesis in Rmarkdown!
See [thesis.Rmd](thesis.Rmd).
See [thesis.pdf](thesis.pdf).
## Rmarkdown website
http://rmarkdown.rstudio.com/index.html
```{r}
include_graphics("images/rmdrstudio.PNG")
```
## Rmarkdown cheat sheet
```{r out.width='4in', out.height='3in'}
include_graphics("images/rmarkdown-cheatsheet.png")
```
https://www.rstudio.com/wp-content/uploads/2016/03/rmarkdown-cheatsheet-2.0.pdf
## Rmarkdown reference guide
```{r out.width='4in', out.height='3in'}
include_graphics("images/rmarkdown-reference.png")
```
https://www.rstudio.com/wp-content/uploads/2015/03/rmarkdown-reference.pdf
# Managing software dependencies
## Managing package dependencies in R
- **sessionInfo** (or session_info)
- switchr
- rctrack
- **checkpoint**
- **packrat**
- docker
# Version control
----
![](images/version_control_PhD.gif)
## Dropbox
Dropbox keeps record of deleted/edited files for 30 days
## Open Science Framework
Automatic version control, no time limit.
![](images/versioncontrol_OSF.png)
## Git & GitHub
![](images/git_versioning.png)
R. Fitzjohn (https://github.com/richfitz/reproducibility-2014)
```{r eval=FALSE}
## Git & GitHub
- [Sign up](https://github.com/join) for GitHub
- [Install Git](http://happygitwithr.com/install-git.html)
- [Introduce yourself](http://happygitwithr.com/hello-git.html)
- Create repo on GitHub
- Clone repo in Rstudio
- Make changes, push, pull
- Collaboration
# Collaborative writing
## Many alternatives
- Rmarkdown + GitHub
- Word + Dropbox
- Google Docs
- Overleaf
- Authorea
- ...
```
## To read more
```{r out.height='4in', out.width='4.5in'}
include_graphics("images/reproms.png")
```
\scriptsize
http://www.revistaecosistemas.net/index.php/ecosistemas/article/viewFile/1178/973
\normalsize
## Happy writing!
![](images/CC-BY-NC-SA_logo.png)
Slides and source code available at https://github.com/Pakillo/ReproducibleScience