A web app made for learning the different ggplot geom layouts
5/3/2020
A web app made for learning the different ggplot geom layouts
Spectacular visualizations with violin, jitter, smooth and many others
With R and ggplot2 package, of course!
I’ll show you the code of the previous slide:
library(ggplot2)
g <- ggplot(mpg, aes(x=cyl, y=hwy, colour=model))
g <- g + facet_wrap(~mpg$manufacturer)
g <- g + geom_violin()
g
Have a look by yourself and have fun learning R!
You can see it here