Skip to content

Instantly share code, notes, and snippets.

@statzhero
Created October 24, 2019 20:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save statzhero/133a514aa3ef8e39126725e0577f718f to your computer and use it in GitHub Desktop.
Save statzhero/133a514aa3ef8e39126725e0577f718f to your computer and use it in GitHub Desktop.
# Simple charts
library(magrittr)
d <- rnorm(1000, 1, 1)
density(d) %>% plot
d2 <- rlnorm(1000, 1, 1)
density(d2) %>% plot
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment