Created
October 24, 2019 20:19
-
-
Save statzhero/133a514aa3ef8e39126725e0577f718f to your computer and use it in GitHub Desktop.
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
# 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