forked from petrelharp/r-markdown-tutorial
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathusing-rmarkdown.Rmd
746 lines (473 loc) · 13.1 KB
/
using-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
---
title: "Narrowing the brain-publication barrier with R+markdown"
author: "Peter Ralph"
date: June 2, 2015
---
```{r setup, include=FALSE}
knitr::opts_knit$set(self.contained=TRUE)
```
Markdown
========
Goal:
-----
Communicate your thoughts to your collaborators and your future self,
. . .
combining text, math, documented code,
. . .
and **no fuss**.
----------------------
No fussing about layout:
- unformatted text
- [markdown](http://commonmark.org/)
- [LaTeX](http://latex-project.org/intro.html)
Markdown aims to be readable as-is, \
but has methods to produce beautiful output.
. . .
> A Markdown-formatted document should be publishable as-is, as plain text, without looking like it's been marked up with tags or formatting instructions. -- [John Gruber](http://daringfireball.net/projects/markdown/syntax#philosophy)
No, really, don't think about the layout
----------------------------------------
Don't even *think* about the layout,
just the content.
> [...] it is better to leave document design to document designers, and to let authors get on with writing documents -- [intro to LaTeX](http://latex-project.org/intro.html)
-----------------------------------------
Today's goal:
1. Learn a few simple rules
2. and get going producing content.
Structuring text
----------------
1. Separate things with empty lines.
2. Wrap lines whenever you feel like it.
![your laptop?](Erika_9_typewriter.jpg)
<!--
On a typewriter,
carriage return
always does the same thing.
But, it's nice to have different (semantic) levels of spaces.
-->
Source
---------------
````{.markdown}
Text formatting
===============
Inline markup
-------------
**Paragraphs** begin and end
with empty lines, and are *not* indented.
- **bold** and *emphasis*
- ~~strikeout~~
- super^scripts^ and sub~scripts~
- and `inline_code($fixed.width)`
````
Result
----------------
### Text formatting
#### Inline markup
**Paragraphs** begin and end with empty lines,
and are *not* indented.
- **bold** and *emphasis*
- ~~strikeout~~
- super^scripts^ and sub~scripts~
- and `inline_code($fixed.width)`
Source
----------------
````{.markdown}
Lists must be preceded by an empty line,
1. ordered or unordered.
2. Indenting subsequent content
- will continue the list
* and nest
* other lists.
3. *Indenting* means one tab, or four spaces.
After using markdown for a bit,
go read [pandoc's documentation](http://pandoc.org/README.html).
````
---------------
Lists must be preceded by an empty line,
1. ordered or unordered.
2. Indenting subsequent content
- will continue the list
* and nest
* other lists.
3. *Indenting* means one tab, or four spaces.
After using markdown for a bit,
go read [pandoc's documentation](http://pandoc.org/README.html).
Math
----
```
Math goes between `$`, single ($\pi$), or double:
$$ \frac{\pi}{4} = \sum_{n=0}^\infty \frac{(-1)^n}{2k+1} .$$
```
Math goes between `$`, single ($\pi$), or double:
$$\frac{\pi}{4} = \sum_{n=0}^\infty \frac{(-1)^n}{2k+1} .$$
------------------
Even math environments *inside* double dollar signs:
```{.md}
$$
\begin{align}
x &= (a+b)^2 - (a-b)^2 \\
&= 4ab
\end{align}
$$
```
\begin{align}
x &= (a+b)^2 - (a-b)^2 \\
&= 4ab
\end{align}
Code blocks
-----------
```{.r}
msg <- "Hello, world."
print(msg)
```
**produces**
```{.R}
msg <- "Hello, world."
print(msg)
```
Blockquotes
-----------
> I also dream about a modern replacement for LaTeX
> designed from the ground up to target multiple output formats
> (at least PDF, HTML, EPUB). -- [John MacFarlane](http://john.macfarlane.usesthis.com/)
**produces**
> I also dream about a modern replacement for LaTeX
> designed from the ground up to target multiple output formats
> (at least PDF, HTML, EPUB). -- [John MacFarlane](http://john.macfarlane.usesthis.com/)
Links and Images
------------------
[Links](http://www.w3.org/) just go in parentheses,
and can be [internal](#links-and-images).
```{.markdown}
[Links](http://www.w3.org/) just go in parentheses,
and can be [internal](#links-and-images).
```
----------------------
Images are **the same** but with a `!` in front. \
(You can't specify image size in the markdown, [yet](https://github.com/jgm/pandoc/issues/261#issuecomment-101078069).)
```{.markdown}
![oh, internet](cat-pandoc.jpg)
```
![oh, internet](cat-pandoc.jpg)
Rendering markdown with [pandoc](http://pandoc.org)
==================================================
Get started!
------------
0. Make a directory for this workshop.
1. Open a text editor.
2. Write some text.
3. Save it as `notes.md`.
-------------
To compile, either:
* Open `R`, run
```{.r}
library(knitr)
knit2html("notes.md")
```
and open `notes.html` in your web browser.
* **or** click on *knit* in `Rstudio`
Wait, but the layout?
---------------------
Remember,
> [...] it is better to leave document design to document designers, and to let authors get on with writing documents.
. . .
If you **must**, then:
- tweak the css
- modify a [rmarkdown format](http://rmarkdown.rstudio.com/developer_custom_formats.html)
- or a [pandoc template](http://pandoc.org/README.html#templates)
Gotchas
-------
1. many things need to begin with an empty line
1. carriage returns don't (usually) mean anything
1. but indentations do (*by at least four spaces*)
. . .
For more info see [the documentation](http://pandoc.org/README.html#the-four-space-rule).
Metadata
--------
At the top of your document, add
```{.yaml}
---
title: YOUR TITLE HERE
author: YOUR NAME HERE
date: June 2, 2015
---
```
... the [YAML](http://yaml.org/) metadata, \
delimited by **exactly three** dashes.
-----------------
**Note:** Besides setting the title,
you can control the **output** in
[many](http://tex.stackexchange.com/questions/139139/adding-headers-and-footers-using-pandoc/139205#139205)
[ways](http://rmarkdown.rstudio.com/html_document_format.html#pandoc-arguments)
here.
*For example*: add
```{.yaml}
output_format : pdf_document
```
and render with `rmarkdown::render("notes.md")`.
. . .
**or even:**
```{.yaml}
output_format : word_document
```
Under the hood
--------------
[`pandoc`](http://pandoc.org/README.html)
```{.sh}
pandoc --help
```
![jgm](jgm.png)
more notes in [the appendix](technical-notes.html)
Adding in R
===========
-----------
**Goal:**
add R code to the document,
*along with its output*.
. . .
![knitr](knitr-screenshot.png)
Go ahead
--------
Just add a *chunk* of R code, wrapped in
`````{.Rmd}
```{r}
# PUT ARBITRARY R CODE HERE
```
`````
. . .
**Try it!**
----------
`````{.Rmd}
Look,
$$ \lim_{n \to \infty} \sum_{k=0}^n \frac{ (-1)^n }{ 2n+1 } = \frac{\pi}{4} , $$
see?
```{r}
cumsum( -4 * (-1)^(1:20) / (2*(1:20)-1) )
```
`````
. . .
Look,
$$ \lim_{n \to \infty} \sum_{k=0}^n \frac{ (-1)^n }{ 2n+1 } = \frac{\pi}{4} , $$
see?
```{r}
cumsum( -4 * (-1)^(1:20) / (2*(1:20)-1) )
```
--------
`````{.Rmd}
```{r}
plot(cumsum( -4 * (-1)^(1:20) / (2*(1:20)-1) ))
abline(h=pi, col='red')
```
`````
. . .
```{r, fig.height=3.5}
plot(cumsum( -4 * (-1)^(1:20) / (2*(1:20)-1) ))
abline(h=pi, col='red')
```
----------------------
**Want to omit the ugly code?**
`````{.Rmd}
```{r, echo=FALSE}
plot(cumsum( -4 * (-1)^(1:20) / (2*(1:20)-1) ))
abline(h=pi, col='red')
```
`````
. . .
```{r, echo=FALSE, fig.height=3.5}
plot(cumsum( -4 * (-1)^(1:20) / (2*(1:20)-1) ))
abline(h=pi, col='red')
```
. . .
**but:** leave it in!
What's going on
---------------
1. `knitr` uses a *regular expression* to find code chunks
- pulls these out,
- evaluates them one at a time
- and inserts "the results" back in
2. `pandoc` renders the resulting markdown file
- with various choices of styling
Chunk options
-------------
Name each chunk,
and set [options](http://yihui.name/knitr/options/)
for [what gets printed](http://yihui.name/knitr/demo/output/)
`````{.Rmd}
```{r my_chunk_name, fig.height=4, echo=FALSE}
`````
`echo=(TRUE|FALSE)`
: include source code in the output?
`results="(markup|asis)"`
: style the output or not?
`include=(FALSE|TRUE)`
: include anything in the output?
-------------
Set document defaults up top:
```````{.Rmd}
```{r, include=FALSE}
fig.dim <- 5
library(knitr)
opts_chunk$set(
fig.height=fig.dim,
fig.width=2*fig.dim,
fig.align='center'
)
```
```````
Tables
------
One option: use `pander`.
```````{.Rmd}
```{r}
library(pander)
bases <- table( sample( c("A","C","G","T"), 300, replace=TRUE ) )
pander(t(bases))
```
```````
*note:* the transpose `t( )`
```{r}
library(pander)
bases <- table( sample( c("A","C","G","T"), 300, replace=TRUE ) )
pander(t(bases))
```
R everywhere
------------
`````{.Rmd}
You can
``r "r"` paste(letters[c(9,14,19,5,18,20)],collapse='')`
code anywhere.
`````
You can
`r paste(letters[c(9,14,19,5,18,20)],collapse='')`
code anywhere.
--------------
Even in the YAML header.
Go change yours!
---
title: My notes
author: Peter Ralph
date: ``r "r"` date()`
---
Online example
==============
--------------
**Question:**
How accurate is inference of the slope of a linear regression,
as a function of the sample size?
. . .
Let's figure it out, by simulation.
. . .
Here is a [pre-written solution](linear-regression.html).
Your turn
---------
Download the
[iris dataset](https://raw.githubusercontent.com/petrelharp/r-markdown-tutorial/master/examples/iris.tsv)
to a new directory.
or just do
````{.R}
data(iris)
write.table(iris,file="examples/iris.tsv",sep="\t")
````
----------
1. Read in the data.
2. Describe the dataset: number of observations, variables, etcetera.
- inline `R` code (`` ``r "r nrow(data)"`` ``)
3. Make a table of the number of observations for each species.
* `pander()`
* or `results="asis"` and `print.xtable(xtable(),type='html')`
4. Plot the flower dimensions against each other,
* first using `pairs()`, then
* colored by species.
Templated reports
=================
-----------------
Set up some fake data:
```{r make_data, warning=FALSE}
dir.create("examples/thedata")
owd <- setwd("examples/thedata")
for (samp in LETTERS[1:10]) {
xy <- data.frame(
age=exp(rnorm(50)),
type=sample(letters[1:3],50,replace=TRUE)
)
xy$height <- 5 + runif(1)*xy$age + 3*runif(1)*as.numeric(xy$type) + rnorm(50)
write.table(xy,file=paste(samp,"-data.tsv",sep=''))
}
setwd(owd)
```
------------------
We now have 10 datasets, \
and would like to *visualize* each,
like:
```{r plot_one_data, echo=FALSE}
xy <- data.frame(
age=exp(rnorm(50)),
type=sample(letters[1:3],50,replace=TRUE)
)
xy$height <- 5 + runif(1)*xy$age + 3*runif(1)*as.numeric(xy$type) + rnorm(50)/3
with(xy, plot( height ~ age, col=type ) )
legend( "topleft", pch=1, legend=levels(xy$type), col=1:nlevels(xy$type) )
```
---------------------
**The template:** `examples/simple-template.Rmd`
``````{.Rmd}
---
title: Visualization for ``r "r"` input.file`
date: ``r "r"` date()`
---
```{r, echo=FALSE}
xy <- read.table(input.file)
```
The file ``r "r"` input.file`
has ``r "r"` nrow(xy)` observations:
```{r}
plot( height ~ age, col=type, data=xy )
legend( "topleft", pch=1, col=1:nlevels(xy$type),
col=1:nlevels(xy$type) )
```
``````
-----------------------
**Render it:**
```{r, results="hide", messages=FALSE, warnings=FALSE }
library(knitr)
owd <- setwd("examples/thedata") # determines where output will go
opts_knit$set(root.dir=".") # determines where code is evaluated
file.names <- list.files(".",".*tsv")
for (input.file in file.names) {
output.file <- gsub(".tsv$",".viz.html",input.file)
knit2html("../simple-template.Rmd", output=output.file, quiet=TRUE)
}
setwd(owd)
```
-------------------------
**Look at them:**
`````{.Rmd}
```{r make_links, results="asis"}
output.files <- file.path("examples/thedata",gsub(".tsv$",".viz.html",file.names))
links <- paste("[",file.names,"](",output.files,")",sep='')
cat( paste("- ", links, "\n"), "\n" )
```
`````
```{r make_links, results="asis", echo=FALSE}
output.files <- file.path("examples/thedata",gsub(".tsv$",".viz.html",file.names))
links <- paste("[",file.names,"](",output.files,")",sep='')
cat( paste("- ", links, "\n"), "\n" )
```
Another exercise
----------------
**Goal:**
Compare different $k$ with $k$-means on the `iris` dataset.
1. Make subdirectories, called `iris/k`, for $1 \le k \le 5$.
2. In each make a file called `config.js`, using e.g.
```{.R}
library(jsonlite)
cat(toJSON(list(k=3)),file="config.json")
```
3. Make a template that reads `config.js` (with `fromJSON`)
and then runs `kmeans` with the appropriate `k`.
Other resources
===============
---------------
* my [technical notes](technical-notes.html) I made while writing this up
- [Karl Broman's](http://kbroman.org/knitr_knutshell/pages/Rmarkdown.html) intro to Rmarkdown
- the extensive, excellent [documentation for pandoc](http://pandoc.org/README.html)
- [Stack](http://stackoverflow.com/questions/tagged/rmarkdown)[Overflow](http://stackoverflow.com/questions/tagged/knitr)