Facet_grid and Facet_wrap
ramblings on using ggplot
Last updated
ramblings on using ggplot
Last updated
ggplot(gapminder, aes(x=continent, y=gdpPercap))
+ geom_bar(stat = 'identity', fill='forest green')
+ facet_wrap(~year)ggplot(gapminder, aes(x=pop)) + geom_density() +
facet_wrap(~year) + scale_x_log10()