Skip to content

Instantly share code, notes, and snippets.

View jdpye's full-sized avatar
🏢
Working from work

Jon Pye jdpye

🏢
Working from work
View GitHub Profile
@mhpob
mhpob / caveplot.R
Last active March 17, 2022 20:35
"Cave plot" proof of concept
library(dplyr)
df_north <- tibble(
week = 1:53,
N = sample(0:15, 53, replace = T)
)
df_south <- tibble(
week = 1:53,