JJ Allaire | 2d8f3f2 | 2016-01-30 13:08:52 -0500 | [diff] [blame^] | 1 | --- |
| 2 | title: "Untitled" |
| 3 | output: |
| 4 | revealjs::revealjs_presentation: |
| 5 | self_contained: false |
| 6 | --- |
| 7 | |
| 8 | ```{r setup, include=FALSE} |
| 9 | knitr::opts_chunk$set(echo = FALSE) |
| 10 | ``` |
| 11 | |
| 12 | ## R Markdown |
| 13 | |
| 14 | This 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 | |
| 16 | When 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} |
| 27 | summary(cars) |
| 28 | ``` |
| 29 | |
| 30 | ## Slide with Plot |
| 31 | |
| 32 | ```{r pressure} |
| 33 | plot(pressure) |
| 34 | ``` |
| 35 | |