blob: f868d42e6ca2e1c0e5861988a16494f6c7d4ade3 [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
6 reveal_plugins: ["search", "zoom", "notes"]
JJ Allaire2d8f3f22016-01-30 13:08:52 -05007---
8
9```{r setup, include=FALSE}
10knitr::opts_chunk$set(echo = FALSE)
11```
12
13## R Markdown
14
15This 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>.
16
17When 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.
18
19## Slide with Bullets
20
21- Bullet 1
22- Bullet 2
23- Bullet 3
24
JJ Allaire82a8dee2016-07-12 10:25:36 -040025<aside class="notes">
26Here are some notes.
27</aside>
28
JJ Allaire2d8f3f22016-01-30 13:08:52 -050029## Slide with R Output
30
31```{r cars, echo = TRUE}
32summary(cars)
33```
34
35## Slide with Plot
36
37```{r pressure}
38plot(pressure)
39```
40