-
Notifications
You must be signed in to change notification settings - Fork 0
/
191212_rladies_rmarkdown.Rmd
888 lines (578 loc) · 13.1 KB
/
191212_rladies_rmarkdown.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
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
---
title: "Introduction to {rmarkdown}"
subtitle: "R-ladies Barcelona"
author: "Sarah Bonnin"
date: "2019-12-12"
output:
xaringan::moon_reader:
css: ["default", "rladies", "rladies-fonts"]
lib_dir: libs
nature:
highlightStyle: github
highlightLines: true
countIncrementalSlides: false
---
## What is Markdown ?
--
* **Lightweight markup language**
--
* **Easy-to-read** and **easy-to-write** plain text format
--
* Rendered as **HTML** document through [Blackfriday](https://gohugo.io/getting-started/configuration/)
---
## What is R Markdown ?
--
* Advanced version of "plain" Markdown: **embeds** and **executes R code**
--
* **Simple formatting syntax** for authoring **HTML, PDF, and MS Word** documents.
--
* Easy to **report** and **share** analysis.
--
* **Reproducibility** and **transparency**.
--
* Produce **high quality documents**.
--
```{r, out.width="30%", echo=FALSE, fig.align="center"}
knitr::include_graphics("https://bookdown.org/yihui/rmarkdown/images/hex-rmarkdown.png")
```
---
## Install and load
{rmarkdown} package is **open-source** and can be installed and loaded as follows:
```{r, eval=FALSE}
install.packages("rmarkdown")
```
```{r, eval=TRUE}
library(rmarkdown)
```
```{r, eval=TRUE, echo=FALSE, message=FALSE, warning=FALSE}
library(ggplot2)
library(dplyr)
library(kableExtra)
```
---
## R Markdown Cheatsheet
R Markdown [Cheatsheet](https://rstudio.com/wp-content/uploads/2016/03/rmarkdown-cheatsheet-2.0.pdf)
---
## R Markdown (RMD) file
* Plain text file
--
* **.Rmd** extension
--
* Create, write and run from **R Studio**
---
## How does it work?
--
```{r, out.width="90%", echo=FALSE, fig.align="center"}
knitr::include_graphics("https://d33wubrfki0l68.cloudfront.net/61d189fd9cdf955058415d3e1b28dd60e1bd7c9b/b739c/lesson-images/rmarkdownflow.png")
```
--
* **{rmarkdown}** feeds the input **.Rmd** file to **{knitr}**
--
* **{knitr}** creates a new **.md** file containing the output
--
* The **.md** file is then fed to **pandoc** that creates the final output
---
## R Markdown file and rendering
Example of a **source file** and its **rendering**:
```{r, out.width="100%", echo=FALSE, fig.align="center"}
knitr::include_graphics("images/RMD_knit.png")
```
---
## Create an .Rmd file in R Studio
File -> New File -> R Markdown...
```{r, out.width="70%", echo=FALSE, fig.align="center"}
knitr::include_graphics("images/RMD_create.png")
```
---
## Create an .Rmd file in R Studio
Choose output format:
```{r, out.width="70%", echo=FALSE, fig.align="center"}
knitr::include_graphics("images/RMD_choose_output.png")
```
---
## Template .Rmd file
```{r, out.width="65%", echo=FALSE, fig.align="center"}
knitr::include_graphics("images/RMD_template.png")
```
---
## First knit!
Knit the template **.Rmd** file to HTML!
```{r, out.width="35%", echo=FALSE, fig.align="center"}
knitr::include_graphics("images/RMD_knit_template.png")
```
---
## First knit!
```{r, out.width="60%", echo=FALSE, fig.align="center"}
knitr::include_graphics("images/RMD_knit_template_output.png")
```
---
## Blocks
```{r echo=FALSE}
str="`\u0060`"
#**`` `r str` ``**
```
* Header (optional) in **YAML** format surrounded by **3 dashes**
--
* R code chunks surrounded by **3 back ticks**
--
* (Formatted) text
---
## Header
The YAML header is surrounded by 3 dashes (**---**)
--
```{r,eval=FALSE, echo=TRUE}
---
title: "TEST"
author: "Sarah Bonnin"
date: "12/8/2019"
output: html_document
---
```
--
Add a table of content:
--
```{r,eval=FALSE, echo=TRUE}
---
title: "TEST"
author: "Sarah Bonnin"
date: "12/8/2019"
output:
html_document:
toc: true
---
```
---
## Format text
```{r, echo=TRUE, eval=FALSE}
*Italic* / _Italic_
**Bold** / __Bold__
***Bold + Italic*** / ___Bold + Italic___
superscript^2^
~~strikethrough~~
```
--
*Italic* / _Italic_
**Bold** / __Bold__
***Bold + Italic*** / ___Bold + Italic___
Superscript^2^
~~Strikethrough~~
---
## Format text
### Headers
````r
# Header 1
## Header 2
### Header 3
#### Header 4
````
--
# Header 1
## Header 2
### Header 3
#### Header 4
---
## Format text
### Headers
--
* Headers will be automatically organized in the **table of content** !
--
````r
# Section 1
## Subsection 1.1
Some text
## Subsection 1.2
More text
# Section 2
## Subsection 2.1
Text from section 2.1
## Subsection 2.2
Text from section 2.2
````
---
## Format text
### Headers
```{r, out.width="35%", echo=FALSE, fig.align="center"}
knitr::include_graphics("images/RMD_TOC_output.png")
```
---
## Lists
### unordered
````
* first item
* second item
* first sub-item
* second sub-item
````
--
* first item
* second item
* first sub-item
* second sub-item
---
## Lists
### ordered
````r
1. first ordered item
2. second ordered item
+ first sub-item
+ second sub-item
````
--
1. first ordered item
2. second ordered item
+ first sub-item
+ second sub-item
---
## Code blocks
### Options
Customize the rendering with **options**:
--
```{r, out.width="95%", echo=FALSE, fig.align="center"}
knitr::include_graphics("images/RMD_options.png")
```
---
## Code blocks
### Load packages in the background
--
* **.Rmd** files are "independent": packages you will need in your code should be loaded **in a code block inside the document** !
--
* If you want to show **no output** and **no message** but still **execute the code**, use the option **include = FALSE**
--
* Load the packages you will need to run the code of your analysis, **at the beginning of the .Rmd file**:
--
````r
`r ''````{r, include = FALSE}
library(ggplot2)
library(dplyr)
library(kableExtra)
```
````
```{r, include=FALSE}
library(ggplot2)
library(dplyr)
library(kableExtra)
```
---
## Code blocks: examples
The following code:
````r
`r ''````{r, eval=TRUE, echo=TRUE, message=TRUE}
ggplot(data=cars, aes(x=speed)) + geom_histogram()
```
````
--
Renders as:
```{r, eval=TRUE, echo=TRUE, message=TRUE}
ggplot(data=cars, aes(x=speed)) + geom_histogram()
```
---
## Code blocks: examples
The following code:
````r
`r ''````{r, eval=TRUE, echo=TRUE, message=TRUE, fig.height=3}
ggplot(data=cars, aes(x=speed)) + geom_histogram()
```
````
--
Renders as:
```{r, eval=TRUE, echo=TRUE, message=TRUE, fig.height=3}
ggplot(data=cars, aes(x=speed)) + geom_histogram()
```
---
## Code blocks: examples
The following code:
````r
`r ''````{r, eval=TRUE, echo=TRUE, message=FALSE, fig.height=3}
ggplot(data=cars, aes(x=speed)) + geom_histogram()
```
````
--
Renders as:
```{r, eval=TRUE, echo=TRUE, message=FALSE, fig.height=3}
ggplot(data=cars, aes(x=speed)) + geom_histogram()
```
---
## Code blocks: examples
The following code:
````r
`r ''````{r, eval=TRUE, echo=FALSE, message=FALSE, fig.height=3}
ggplot(data=cars, aes(x=speed)) + geom_histogram()
```
````
--
Renders as:
```{r, eval=TRUE, echo=FALSE, message=FALSE, fig.height=3}
ggplot(data=cars, aes(x=speed)) + geom_histogram()
```
---
## Code blocks: examples
The following code:
````r
`r ''````{r, eval=FALSE, echo=TRUE, message=FALSE, fig.height=3}
ggplot(data=cars, aes(x=speed)) + geom_histogram()
```
````
--
Renders as:
```{r, eval=FALSE, echo=TRUE, message=FALSE, fig.height=3}
ggplot(data=cars, aes(x=speed)) + geom_histogram()
```
---
## Code blocks: examples
The following code:
````r
`r ''````{r, eval=FALSE, echo=FALSE, message=FALSE, fig.height=3}
ggplot(data=cars, aes(x=speed)) + geom_histogram()
```
````
--
Renders as:
--
NOTHING! No code, no output, no message...
```{r, eval=FALSE, echo=FALSE, message=FALSE, fig.height=3}
ggplot(data=cars, aes(x=speed)) + geom_histogram()
```
---
## Code blocks: examples (tidy)
The following code:
````r
`r ''````{r, eval=FALSE, echo=TRUE, message=FALSE, fig.height=3, tidy=TRUE}
ggplot(data=cars,aes(x=speed))+geom_histogram()
```
````
--
Renders as:
```{r, eval=FALSE, echo=TRUE, message=FALSE, fig.height=3, tidy=TRUE}
ggplot(data=cars,aes(x=speed))+geom_histogram()
```
---
## Code blocks
Include options globally:
````r
`r ''````{r setup, include=FALSE}
knitr::opts_chunk$set(echo = TRUE, tidy = TRUE, message = FALSE)
```
````
---
## Code blocks: Python and bash
{rmarkdown} can also execute, for example, **bash** and **Python** blocks of code.
--
````bash
`r ''````{bash}
ls *
```
````
--
```{bash}
ls *
```
---
## Code blocks: Python and bash
{rmarkdown} can also execute, for example, **bash** and **Python** blocks of code.
--
````python
`r ''````{python}
x = 'Rladies Barcelona'
print(x.split(' '))
```
````
--
```{python, python.reticulate=FALSE}
x = 'Rladies Barcelona'
print(x.split(' '))
```
---
## Code blocks: knitr language engines
{rmarkdown} can execute **many different languages!**
--
See this [knitr language engines guide](https://bookdown.org/yihui/rmarkdown/language-engines.html)
---
## Insert images
Recommended / easier to format way with **knitr::include_graphics**:
--
````r
`r ''````{r}
knitr::include_graphics("https://rladies.org/wp-content/uploads/2016/12/R-LadiesGlobal.png")
```
````
--
```{r}
knitr::include_graphics("https://rladies.org/wp-content/uploads/2016/12/R-LadiesGlobal.png")
```
---
## Insert images
Recommended / easier to format way with **knitr::include_graphics**:
--
````r
`r ''````{r, out.width="50%", echo=FALSE, fig.align="center"}
knitr::include_graphics("https://rladies.org/wp-content/uploads/2016/12/R-LadiesGlobal.png")
```
````
--
```{r, out.width="50%", echo=FALSE, fig.align="center"}
knitr::include_graphics("https://rladies.org/wp-content/uploads/2016/12/R-LadiesGlobal.png")
```
---
## Links
You can **link** web pages:
--
````r
Here is a [link]("https://rmarkdown.rstudio.com/")
to {rmarkdown} page on [R Studio](https://rstudio.com/) website.
````
--
Here is a [link]("https://rmarkdown.rstudio.com/")
to {rmarkdown} page on [R Studio](https://rstudio.com/) website.
---
## Create tables
You can create tables:
````r
Date | Workshop
----- | -----
12/12/2019 | R Markdown
21/01/2020 | Forecasting
````
--
Date | Workshop
----- | -----
12/12/2019 | R Markdown
21/01/2020 | Forecasting
---
## Show R objects as tables
Format tables with **knitr::kable** and [**{kableExtra}**](http://haozhu233.github.io/kableExtra/awesome_table_in_html.html) package.
````r
`r ''````{r}
knitr::kable(head(iris))
```
````
--
```{r, echo=F}
knitr::kable(head(iris))
```
---
## Show R objects as tables
**Bold** columns
````r
`r ''````{r}
knitr::kable(head(iris)) %>%
column_spec(1:2, bold = TRUE)
```
````
--
```{r, echo=F}
knitr::kable(head(iris)) %>%
column_spec(1:2, bold = TRUE)
```
---
## Show R objects as tables
**Colored** rows
````r
`r ''````{r}
knitr::kable(head(iris)) %>%
row_spec(1:3, color = "white", background = "red")
```
````
--
```{r, echo=F}
knitr::kable(head(iris)) %>%
row_spec(1:3, color = "white", background = "red")
```
---
## Show R objects as tables
Change **font size**
````r
`r ''````{r}
knitr::kable(head(iris)) %>%
kable_styling(font_size = 10)
```
````
--
```{r, echo=F}
knitr::kable(head(iris)) %>%
kable_styling(font_size = 10)
```
---
## Show R objects as tables
All together
````r
`r ''````{r}
knitr::kable(head(iris)) %>%
kable_styling(font_size = 10) %>%
row_spec(1:3, color = "white", background = "red") %>%
column_spec(1:2, bold = TRUE)
```
````
--
```{r, echo=F}
knitr::kable(head(iris)) %>%
kable_styling(font_size = 10) %>%
row_spec(1:3, color = "white", background = "red") %>%
column_spec(1:2, bold = TRUE)
```
---
## Show R objects as tables
Add extra headers
````r
`r ''````{r}
knitr::kable(head(iris)) %>%
kable_styling(font_size = 10) %>%
row_spec(1:3, color = "white", background = "red") %>%
column_spec(1:2, bold = TRUE) %>%
add_header_above(c("Sepal" = 2, "Petal" = 2, " " = 1))
```
````
--
```{r, echo=F}
knitr::kable(head(iris)) %>%
kable_styling(font_size = 10) %>%
row_spec(1:3, color = "white", background = "red") %>%
column_spec(1:2, bold = TRUE) %>%
add_header_above(c("Sepal" = 2, "Petal" = 2, " " = 1))
```
---
## Show R objects as tables
Conditional formatting
````r
`r ''````{r}
head(iris) %>%
mutate(
Petal.Length = cell_spec(Petal.Length, "html", color = ifelse(Petal.Length > 1.4, "red", "blue"))
) %>%
kable(format="html", escape=FALSE) %>%
kable_styling("striped", full_width = F, font_size = 10)
```
````
--
```{r, echo=F}
head(iris) %>%
mutate(
Petal.Length = cell_spec(Petal.Length, "html", color = ifelse(Petal.Length > 1.4, "red", "blue"))
) %>%
kable(format="html", escape=FALSE) %>%
kable_styling("striped", full_width = F, font_size = 10)
```
---
## Hands on !
Modify the **.Rmd template**:
--
* Modify global options so blocks of code are always **tidy**.
--
* **plot(pressure)**: show code but hide plot.
--
* Format **summary(cars)** with **kable** and **{kableExtra}**: highlight in yellow the "Median" row.
--
* Add the **table of content** (toc) option in the YAML header
--
* Add any modification you want (text, formatting, ...)
--
* **knit** !
---
class: inverse, center, middle
# THANK YOU !
--
*slides created with the [xaringan package](https://github.com/yihui/xaringan)*
--
Follow us on Twitter ! @RLadiesBCN
```{r, echo=FALSE, out.width="55%", fig.align="center"}
knitr::include_graphics("https://media.giphy.com/media/SMKiEh9WDO6ze/giphy.gif")
```