blob: 309f0f5ffcb16425c820996b044b0c4f51bf6c1e [file] [log] [blame]
JJ Allaire2d8f3f22016-01-30 13:08:52 -05001---
2title: "Untitled"
3output:
4 revealjs::revealjs_presentation:
5 self_contained: false
6---
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