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
# Executable Code Chunks
Basic R chunk:
```{r}
x <- 42
```
With options:
```{r}
#| echo: false
#| fig-width: 8
plot(1:10)
```
Python chunk:
```{python}
#| eval: true
import pandas as pd
```
Julia chunk with label:
```{julia}
#| label: fig-plot
#| echo: false
using Plots
```
```{r}
#| fig-cap: "A multiline caption
#| that spans multiple lines and demonstrates
#| wrapping."
a <- 1
```