Skip to content

Instantly share code, notes, and snippets.

View blakiseskream's full-sized avatar
🍁
vibing

Andrew Watson blakiseskream

🍁
vibing
View GitHub Profile
@blakiseskream
blakiseskream / create-memes-in-r.R
Last active June 5, 2018 00:09
create memes using R
# view the docs here https://cran.r-project.org/web/packages/meme/vignettes/meme.html
# example generating this meme I emailed you
# install.packages('meme')
library(meme)
# only run this once
if (.Platform$OS.type == "windows") {
windowsFonts(
Impact = windowsFont("Impact"),
@blakiseskream
blakiseskream / ae-distance-calculation.R
Last active October 18, 2018 18:00
example of calculating AE distance
# Make sure you install packages!
# I recommend dev version
#
# install.packages('devtools')
# devtools::install_github("dkahle/ggmap")
library(ggmap)
register_google("PUT THE API KEY HERE")
library(tidyverse)