Code Challenge 3

For today’s code challenge, you will need to create a plot of the relationship between a country’s per capita GDP and life expectancy. To start with, install the gapminder package. Once you call library(gapminder), this will give you a data.frame called gapminder. Using data only from 2007, I’d like for you to exactly recreate the following plot using the ggplot2 package:

Rules:

To win



Solution below…















library(gapminder)
library(ggplot2)

gm2007 <- subset(gapminder, year==2007)
ggplot(data=gm2007,
       mapping=aes(x=gdpPercap, y=lifeExp)) + 
  geom_point(color="red") + 
  ylab("Life Expectancy") + 
  xlab("per capita GDP") +
  theme_bw()