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