generated from inSilecoInc/workshop_R_template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.Rmd
116 lines (75 loc) · 2.3 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
---
title: "About reproducibility"
author: "inSileco Team"
output:
xaringan::moon_reader:
css: [default, rd.css, rd-font.css, "hygge"]
lib_dir: assets
seal: false
nature:
highlightStyle: dracula
countIncrementalSlides: false
beforeInit: "macros.js"
---
```{r setup, include = FALSE}
knitr::opts_chunk$set(
comment = "#>",
collapse = TRUE,
warning = FALSE,
message = FALSE,
dev = "png",
dpi = 108,
fig.width = 6,
fig.height = 4.5,
fig.align = 'center',
width = 120
)
options(htmltools.dir.version = FALSE, htmltools.preserve.raw = FALSE)
rfa <- function(...) icons::fontawesome(...)
emj <- function(...) emo::ji(...)
kig <- function(...) knitr::include_graphics(...)
```
class: title-slide, middle
## .font140[`r rfa("r-project")`eproducible Workflows]
<br>
.instructors[
.font180[Increase Everyday Efficiency]
<br><br><br>
.authors140[David Beauchesne & Kevin Cazelles]
<br><br>
`r format(Sys.time(), '%B %d, %Y')`
<br>
.font200[
[`r rfa("github")`](https://github.com/inSilecoInc/workshop_reproducibility)
[`r rfa("database")`](https://github.com/inSilecoInc/workshop_reproducibility/raw/gh-pages/data_and_script.zip)
<!-- [`r rfa("file-pdf")`](link_to_pdf_version) -->
]
]
<br>
<img src="img/logoW.png" width="140px"></img>

.instructors[Content under [`r rfa("creative-commons")` `r rfa("creative-commons-by")`](https://creativecommons.org/licenses/by/4.0/) unless otherwise specified. <br>Right banner based on a comic available at [phdcomics.com](http://phdcomics.com/comics/archive_print.php?comicid=1689).]
---
class: inverse, center, middle
# Learning objectives
![:custom_hr]()
## .font160[`r rfa("map")` + `r rfa("r-project")`]
---
# Learning objectives
<br>
### 1. Understand the importance of reproducible research.
### 2. Understand how R can be useful for reproducible research.
### 3. Set up a minimal reproducible workflow.
### 4. Create a simple R Markdown document including a reproducible analysis.
<!-- PART 1 -->
```{r, child = "part1.Rmd" }
```
<!-- PART 2 -->
```{r, child = "part2.Rmd" }
```
<!-- PART 2 -->
```{r, child = "part3.Rmd" }
```
<!-- RESOURCES -->
```{r, child = "partResources.Rmd" }
```