-
Notifications
You must be signed in to change notification settings - Fork 2
/
07-roundup.qmd
93 lines (60 loc) · 1.85 KB
/
07-roundup.qmd
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
---
format:
revealjs:
theme: [default, slide-styles.scss]
width: 1280
height: 720
include-after-body:
- "all-the-js-code.html"
echo: false
code-line-numbers: false
---
# Roundup
::: r-fit-text
We made it!
:::
## Your turn {.exercise}
*What is one thing you learned that surprised you?*
*What is one thing you learned that you plan to use?*
{{< countdown "5:00" >}}
## Resources to keep learning
. . .
- <https://quarto.org/>
. . .
- <https://github.com/quarto-dev/quarto-cli/discussions>
. . .
- <https://github.com/mcanouil/awesome-quarto>
. . .
## What we didn't get to
### Computations
Code blocks that use braces around the language name (e.g. ```` ```{r} ````) are executable, and will be run by Quarto during render.
```{{r}}
#| label: fig-airquality
#| fig-cap: "Temperature and ozone level."
#| warning: false
library(ggplot2)
ggplot(airquality, aes(Temp, Ozone)) +
geom_point() +
geom_smooth(method = "loess")
```
:::: footer
<https://quarto.org/docs/computations/r.html>
:::
## What we didn't get to
### Freeze
You can use the freeze option to denote that computational documents should never be re-rendered during a global project render, or alternatively only be re-rendered when their source file changes:
```yaml
execute:
freeze: true # never re-render during project render
```
```yaml
execute:
freeze: auto # re-render only when source changes
```
## Share what you have
- keep sharing in Discord, we learn better together
- Quarto Team Meetup, Tuesday 12:00 – 12:40pm
- The quarto team will be in the Lounge Wednesday morning
## Submit feedback before you leave
[pos.it/conf-workshop-survey](https://pos.it/conf-workshop-survey)
Your feedback is crucial! Data from the survey informs curriculum and format decisions for future conf workshops and we really appreciate you taking the time to provide it.