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 |
JJ Allaire | 064552c | 2017-02-10 10:28:41 -0500 | [diff] [blame] | 6 | reveal_plugins: ["search", "zoom", "notes", "chalkboard", "menu"] |
JJ Allaire | 375805c | 2016-11-15 08:56:43 -0500 | [diff] [blame] | 7 | reveal_options: |
| 8 | chalkboard: |
| 9 | theme: chalkboard |
JJ Allaire | 064552c | 2017-02-10 10:28:41 -0500 | [diff] [blame] | 10 | toggleNotesButton: true |
| 11 | menu: |
| 12 | numbers: true |
JJ Allaire | 2d8f3f2 | 2016-01-30 13:08:52 -0500 | [diff] [blame] | 13 | --- |
| 14 | |
| 15 | ```{r setup, include=FALSE} |
| 16 | knitr::opts_chunk$set(echo = FALSE) |
| 17 | ``` |
| 18 | |
| 19 | ## R Markdown |
| 20 | |
| 21 | 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>. |
| 22 | |
| 23 | 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. |
| 24 | |
| 25 | ## Slide with Bullets |
| 26 | |
| 27 | - Bullet 1 |
| 28 | - Bullet 2 |
| 29 | - Bullet 3 |
| 30 | |
JJ Allaire | 82a8dee | 2016-07-12 10:25:36 -0400 | [diff] [blame] | 31 | <aside class="notes"> |
| 32 | Here are some notes. |
| 33 | </aside> |
| 34 | |
JJ Allaire | 2d8f3f2 | 2016-01-30 13:08:52 -0500 | [diff] [blame] | 35 | ## Slide with R Output |
| 36 | |
| 37 | ```{r cars, echo = TRUE} |
| 38 | summary(cars) |
| 39 | ``` |
| 40 | |
| 41 | ## Slide with Plot |
| 42 | |
| 43 | ```{r pressure} |
| 44 | plot(pressure) |
| 45 | ``` |
| 46 | |