blob: 5a8ac0a0eed12b13fab21088a351c32cec08402a [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
JJ Allaire064552c2017-02-10 10:28:41 -05006 reveal_plugins: ["search", "zoom", "notes", "chalkboard", "menu"]
JJ Allaire375805c2016-11-15 08:56:43 -05007 reveal_options:
8 chalkboard:
9 theme: chalkboard
JJ Allaire064552c2017-02-10 10:28:41 -050010 toggleNotesButton: true
11 menu:
12 numbers: true
JJ Allaire2d8f3f22016-01-30 13:08:52 -050013---
14
15```{r setup, include=FALSE}
16knitr::opts_chunk$set(echo = FALSE)
17```
18
19## R Markdown
20
21This 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>.
22
23When 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.
24
25## Slide with Bullets
26
27- Bullet 1
28- Bullet 2
29- Bullet 3
30
JJ Allaire82a8dee2016-07-12 10:25:36 -040031<aside class="notes">
32Here are some notes.
33</aside>
34
JJ Allaire2d8f3f22016-01-30 13:08:52 -050035## Slide with R Output
36
37```{r cars, echo = TRUE}
38summary(cars)
39```
40
41## Slide with Plot
42
43```{r pressure}
44plot(pressure)
45```
46