Created
February 13, 2015 15:32
-
-
Save AABoyles/c3aa1e8792e37fb69948 to your computer and use it in GitHub Desktop.
Valentine's Analysis
This file contains hidden or 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
library(ggplot2) | |
data <- data.frame( | |
Time=1:20, | |
Love=cumsum(abs(rnorm(20, sd = 5)*100))) | |
ggplot(data,aes(Time,Love)) + | |
stat_smooth(se=FALSE, aes(color="Red", size=3)) + | |
theme(legend.position = "none", | |
axis.text.x = element_blank(), | |
axis.text.y = element_blank(), | |
axis.ticks.x = element_blank(), | |
axis.ticks.y = element_blank()) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment