jennybc/gapminder

foo

jennybc opened this issue · 1 comments

library(ggplot2)
library(gapminder)
ggplot(subset(gapminder, continent != "Oceania"),
       aes(x = year, y = lifeExp, group = country, color = country)) +
  geom_line(lwd = 1, show.legend = FALSE) + facet_wrap(~ continent) +
  scale_color_manual(values = country_colors) +
  theme_bw() + theme(strip.text = element_text(size = rel(1.1)))

Created on 2018-02-06 by the reprex package (v0.2.0).

I guess I was demonstrating reprex or something here.