JJ Allaire | 2d8f3f2 | 2016-01-30 13:08:52 -0500 | [diff] [blame] | 1 | --- |
| 2 | title: "Untitled" |
| 3 | output: |
| 4 | revealjs::revealjs_presentation: |
JJ Allaire | 82a8dee | 2016-07-12 10:25:36 -0400 | [diff] [blame] | 5 | self_contained: false |
| 6 | reveal_plugins: ["search", "zoom", "notes"] |
JJ Allaire | 2d8f3f2 | 2016-01-30 13:08:52 -0500 | [diff] [blame] | 7 | --- |
| 8 | |
| 9 | ```{r setup, include=FALSE} |
| 10 | knitr::opts_chunk$set(echo = FALSE) |
| 11 | ``` |
| 12 | |
| 13 | ## R Markdown |
| 14 | |
| 15 | 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>. |
| 16 | |
| 17 | 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. |
| 18 | |
| 19 | ## Slide with Bullets |
| 20 | |
| 21 | - Bullet 1 |
| 22 | - Bullet 2 |
| 23 | - Bullet 3 |
| 24 | |
JJ Allaire | 82a8dee | 2016-07-12 10:25:36 -0400 | [diff] [blame] | 25 | <aside class="notes"> |
| 26 | Here are some notes. |
| 27 | </aside> |
| 28 | |
JJ Allaire | 2d8f3f2 | 2016-01-30 13:08:52 -0500 | [diff] [blame] | 29 | ## Slide with R Output |
| 30 | |
| 31 | ```{r cars, echo = TRUE} |
| 32 | summary(cars) |
| 33 | ``` |
| 34 | |
| 35 | ## Slide with Plot |
| 36 | |
| 37 | ```{r pressure} |
| 38 | plot(pressure) |
| 39 | ``` |
| 40 | |