Skip to content

Instantly share code, notes, and snippets.

View EvaMaeRey's full-sized avatar

Gina Reynolds EvaMaeRey

View GitHub Profile
@EvaMaeRey
EvaMaeRey / ggplot_tutorial.Rmd
Last active March 12, 2019 14:03 — forked from gadenbuie/ggplot_tutorial.Rmd
ggplot tutorial with kunoichi + ninjutsu xaringan theme
---
title: "ggplot tutorial"
subtitle: "with kunoichi + ninjutsu theme"
author: "<br><br> Emi Tanaka"
date: "<br>2018/09/16"
output:
xaringan::moon_reader:
lib_dir: libs
css: ["kunoichi", "ninjutsu"]
nature:
@EvaMaeRey
EvaMaeRey / ggplot_tutorial.Rmd
Last active November 7, 2018 16:34 — forked from emitanaka/ggplot_tutorial.Rmd
ggplot tutorial with kunoichi + ninjutsu xaringan theme
---
title: "ggplot tutorial"
subtitle: "with kunoichi + ninjutsu theme"
author: "<br><br> Emi Tanaka"
date: "<br>2018/09/16"
output:
xaringan::moon_reader:
lib_dir: libs
css: ["kunoichi", "ninjutsu"]
nature:
@EvaMaeRey
EvaMaeRey / sotu.R
Created February 1, 2018 16:20 — forked from joshkatz/sotu.R
State of the Union WPM chart
needs(rvest, tidyverse, zoo)
df <- c('minutes', 'words') %>%
map(function(var) {
doc <- var %>%
sprintf(fmt = 'http://www.presidency.ucsb.edu/sou_%s.php') %>%
read_html()
doc %>%
html_node('table tr:nth-of-type(2) table') %>%
html_table(fill = T) %>%