Calle Börstell about 1 month ago
library(ggplot2)
ggplot() +
geom_density(data=data.frame(x=rnorm(1e5)),aes(x))+
geom_line(data=data.frame(x =-5:5,y=cos(-5:5)/100),aes(x,y))+
annotate("point",x=c(-.3,0,.3),y=c(.3,.25,.3),size=3) +
ggtitle("Happy Halloween")+
theme_void(base_family="Rubik Wet Paint")
#RStats #ggplot2