This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# modified from https://gist.github.com/sa-lee/c271b47d8065412d3d42c1ad8e63048d | |
library(datasauRus) | |
library(gganimate) | |
library(magrittr) | |
p <- datasaurus_dozen %>% | |
ggplot() + | |
geom_point(aes(x = x, y = y), col = "steelblue") + | |
theme(legend.position = 'none', | |
aspect.ratio = 1, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
title : RevealJS with Bootstrap | |
framework : revealjs | |
widgets : [bootstrap] # {mathjax, quiz, bootstrap} | |
--- | |
## Read-And-Delete | |
1. Edit YAML front matter | |
2. Write using R Markdown |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
\documentclass{article} | |
\begin{document} | |
<<names>>= | |
input$firstname | |
input$lastname | |
@ | |
\end{document} |