Using the tidyverse and Quarto
UniLu
Monday, the 25th of November, 2024
{.incremental} fenced div 👍from: markdown+emoji in header allows emoji usage 😄hashpipe, completion works great 👋CTRL+, ✔️Following discussion on quarto-cli, logo on each slide can point to the desired URL.
Set it in the YAML header with logo_url: "https://fasterthanli.me"
If not set, it points to https://quarto.org
Using {background="#e4f0ff"} class to the header2
Absolute positioning of image and text, increment with . . .

Console
{.columns} and LaTexTrying to get rid of xaringanExtra1
contents… 40%
\[\begin{gather*} a_1=b_1+c_1\\ a_2=b_2+c_2-d_2+e_2 \end{gather*}\]Playing with {.fragment} transitions
Highlight red
Fade in
Slide up while fading in
::: {.panel-tabset}
---
format: test
---

dplyr via RStudio
Two ways of installing packages
.r-fit-text classBig Text
More in the official Quarto Presentation demo and available code
Literate programming is the practice of mixing code and descriptive writing in order to execute and explain a data analysis simultaneously in the same document.
— William Landau
Source: {targets} user manual
|!expr```{r}
#| layout-ncol: 2
#| code-line-numbers: "|3-4,6|7"
#| fig-cap: !expr glue::glue("Swiss data are {nrow(swiss)} rows")
#| fig-height: 3
plot(swiss$Agriculture, swiss$Fertility)
plot(swiss$Agriculture, swiss$Education)
```

