knitr::opts_chunk$set(echo = TRUE, fig.height=5, fig.align='center')
class: center, middle
The xaringan
package lets you make html presentations
The ehastyle
package creates consistent formatting for your presentation
These can be used to create slide shows that dynamically update with your analysis
These list items are
Place holders for your
Content
sub list item 1
sub list item 2
sub list item 3
library(ggplot2) library(dplyr) library(xaringanthemer) ggplot2::diamonds %>% ggplot(aes(x = cut, y = carat)) + geom_violin() + theme_xaringan() + coord_flip()
library(ggplot2) library(dplyr) library(xaringanthemer) ggplot2::diamonds %>% ggplot(aes(x = cut, y = carat)) + geom_violin() + theme_xaringan() + coord_flip()
.left-column[ - Any content - You like - On the left ]
.right-column[
ggplot2::diamonds %>% ggplot(aes(x = cut, y = carat)) + geom_violin() + theme_xaringan() + coord_flip()
]
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.