blob: 8a8b485f09ac1a9bfec6803fdbb37ddb2e56639f [file] [log] [blame]
JJ Allaire2d8f3f22016-01-30 13:08:52 -05001---
2title: "Untitled"
3output:
4 revealjs::revealjs_presentation:
JJ Allaire6da1bb62016-01-30 14:28:39 -05005 self_contained: true
JJ Allaire2d8f3f22016-01-30 13:08:52 -05006---
7
8```{r setup, include=FALSE}
9knitr::opts_chunk$set(echo = FALSE)
10```
11
12## R Markdown
13
14This 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>.
15
16When 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.
17
18## Slide with Bullets
19
20- Bullet 1
21- Bullet 2
22- Bullet 3
23
24## Slide with R Output
25
26```{r cars, echo = TRUE}
27summary(cars)
28```
29
30## Slide with Plot
31
32```{r pressure}
33plot(pressure)
34```
35