R code in RMarkdown documents

Communiceren met data in de Tidyverse

Timo Grossenbacher

Data Journalist

Communiceren met data in de Tidyverse

Adding R chunks


```{r}
x <- 2 + 2
x
```

4

2 plus 2 equals `r 2 + 2`.

2 plus 2 equals 4.

Communiceren met data in de Tidyverse

The `knitr` package

1 R for Data Science (http://r4ds.had.co.nz/r-markdown.html)
Communiceren met data in de Tidyverse

R chunk options


```{r include=FALSE}
x <- 2 + 2
x
```

```{r}
x
```

4

Communiceren met data in de Tidyverse

More R chunk options

Option Effect
include Whether to show the R code chunk and its output.
echo Whether to show the R code chunk.
message Whether to show output messages.
warning Whether to show output warnings.
eval Whether to actually evaluate the R code chunk.

More options on the respective help page of the knitr package.

Communiceren met data in de Tidyverse

Let's try this out!

Communiceren met data in de Tidyverse

Preparing Video For Download...