blob: 3ab24040b83bcd7055126eaaaf94dcb0081836f5 [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
Christophe Dervieuxe1893ae2021-10-07 17:09:02 +020010 - menu
JJ Allaire375805c2016-11-15 08:56:43 -050011 reveal_options:
Christophe Dervieuxe1893ae2021-10-07 17:09:02 +020012 chalkboard:
JJ Allaire375805c2016-11-15 08:56:43 -050013 theme: chalkboard
JJ Allaire064552c2017-02-10 10:28:41 -050014 toggleNotesButton: true
15 menu:
16 numbers: true
JJ Allaire2d8f3f22016-01-30 13:08:52 -050017---
18
19```{r setup, include=FALSE}
20knitr::opts_chunk$set(echo = FALSE)
21```
22
23## R Markdown
24
25This 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>.
26
27When 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.
28
29## Slide with Bullets
30
31- Bullet 1
32- Bullet 2
33- Bullet 3
34
JJ Allaire82a8dee2016-07-12 10:25:36 -040035<aside class="notes">
36Here are some notes.
37</aside>
38
JJ Allaire2d8f3f22016-01-30 13:08:52 -050039## Slide with R Output
40
41```{r cars, echo = TRUE}
42summary(cars)
43```
44
45## Slide with Plot
46
47```{r pressure}
48plot(pressure)
49```
50