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