blob: 035e391c42fa3f7a8eff3c4e6b682beced295638 [file] [log] [blame]
JJ Allaire2d8f3f22016-01-30 13:08:52 -05001---
2title: "Untitled"
3output:
4 revealjs::revealjs_presentation:
JJ Allaire82a8dee2016-07-12 10:25:36 -04005 self_contained: false
Christophe Dervieuxe1893ae2021-10-07 17:09:02 +02006 reveal_plugins:
7 - search
8 - zoom
9 - notes
10 - chalkboard
11 - menu
JJ Allaire375805c2016-11-15 08:56:43 -050012 reveal_options:
Christophe Dervieuxe1893ae2021-10-07 17:09:02 +020013 chalkboard:
JJ Allaire375805c2016-11-15 08:56:43 -050014 theme: chalkboard
JJ Allaire064552c2017-02-10 10:28:41 -050015 toggleNotesButton: true
16 menu:
17 numbers: true
JJ Allaire2d8f3f22016-01-30 13:08:52 -050018---
19
20```{r setup, include=FALSE}
21knitr::opts_chunk$set(echo = FALSE)
22```
23
24## R Markdown
25
26This is an R Markdown presentation. Markdown is a simple formatting syntax for authoring HTML, PDF, and MS Word documents. For more details on using R Markdown see <http://rmarkdown.rstudio.com>.
27
28When you click the **Knit** button a document will be generated that includes both content as well as the output of any embedded R code chunks within the document.
29
30## Slide with Bullets
31
32- Bullet 1
33- Bullet 2
34- Bullet 3
35
JJ Allaire82a8dee2016-07-12 10:25:36 -040036<aside class="notes">
37Here are some notes.
38</aside>
39
JJ Allaire2d8f3f22016-01-30 13:08:52 -050040## Slide with R Output
41
42```{r cars, echo = TRUE}
43summary(cars)
44```
45
46## Slide with Plot
47
48```{r pressure}
49plot(pressure)
50```
51