5/3/2020

What is it?

A web app made for learning the different ggplot geom layouts

16 graphs

Spectacular visualizations with violin, jitter, smooth and many others

How it was made?

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

The Outcomes

Have a look by yourself and have fun learning R!

You can see it here