This repository has been archived by the owner on Aug 30, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
CS_03.Rmd
110 lines (88 loc) · 5.72 KB
/
CS_03.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
---
title: Wealth over time
week: 3
type: Case Study
subtitle: Data wrangling plus more advanced ggplot
reading:
- The [ggplot2 vignette](https://ggplot2.tidyverse.org/){target='blank'}
- R4DS [Chapter 3 - Data visualization](http://r4ds.had.co.nz/data-visualisation.html){target='blank'}
- The [Hans Rosling The River of Myths](https://youtu.be/OwII-dwh-bk){target='blank'}
- Watch the [Hons Rosling video](https://www.ted.com/talks/hans_rosling_shows_the_best_stats_you_ve_ever_seen){target="blank"}
tasks:
- Recreate layered graphics with ggplot including raw and transformed data
- Save graphical output as a .png file
- Save your script as a .R or .Rmd in your course repository
---
```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = TRUE)
library(knitr)
source("functions.R")
```
# Reading
```{r reading,results='asis',echo=F}
md_bullet(rmarkdown::metadata$reading)
```
# Tasks
```{r tasks,results='asis',echo=F}
md_bullet(rmarkdown::metadata$tasks)
```
# Background
[Hans Rosling](http://www.gapminder.org/news/sad-to-announce-hans-rosling-passed-away-this-morning/){target="blank"} is one of the most popular data scientists on the web. [His original TED talk](https://www.ted.com/talks/hans_rosling_shows_the_best_stats_you_ve_ever_seen){target="blank"} was very popular when it came out. We are going to create some graphics using his formatted data as our weekly case study. Note that we need to remove Kuwait from the data ([discussion on this](https://github.com/jennybc/gapminder/issues/9){target="blank"})
# Instructions
In this exercise you will recreate the two graphics shown below using `gapminder` dataset from `library(gapminder)` (get them to match as closely as you can). Specific instructions/steps are listed in the 'Detailed Steps' section.
## Wealth and life expectancy through time
```{r code1, eval=TRUE,echo=FALSE, fig.width=15, message=FALSE}
library(gapminder)
library(dplyr)
library(ggplot2)
library(scales)
gapminder <- gapminder %>% filter(country != "Kuwait")
gapminder_continent <- gapminder %>%
group_by(continent, year) %>%
summarise(gdpPercap = weighted.mean(x = gdpPercap, w = pop),
pop = sum(as.numeric(pop)))
p1=ggplot(data = gapminder, aes(color = continent, x = lifeExp, y = gdpPercap, size = pop/100000)) +
geom_point() +
facet_wrap(~year, nrow = 1) +
scale_y_continuous(trans = "sqrt") +
theme_bw() +
labs(x = "Life Expectancy", y = "GDP per capita", size = "Population (100k)", color = "continent")
p2=ggplot(data = gapminder, aes(color = continent, x = year, y = gdpPercap)) +
geom_point(aes(size = pop/100000)) +
geom_line(aes(group = country)) +
geom_point(data = gapminder_continent, color = "black", aes(size = pop/100000)) +
geom_line(data = gapminder_continent, color = "black") +
facet_wrap(~continent, nrow = 1) +
theme_bw() +
labs(x = "Year", y = "GDP per capita", color = "Continent", size = "Population (100k)")
p1
p2
# ggsave(file="week_04/case_study/plot1.png",plot=p1,width = 15,height=8)
# ggsave(file="week_04/case_study/plot2.png",plot=p2,width = 15,height=8)
```
## Detailed Steps
1. Use `library(ggplot2); library(gapminder); library(dplyr)` to load the necessary packages.
* Use `filter()` to remove "Kuwait" from the `gapminder` dataset for reasons noted in the background
2. Plot #1 (the first row of plots)
* Use `ggplot()` and the `theme_bw()` to duplicate the first plot using the filtered dataset (without Kuwait)
* Specify the appropriate aesthetic mapping (`aes()`) to color by contintent and adjust the size of the point with `size=pop/100000`. Remember that if you adjust the data like this you will also need to update the legend later.
* Use `scale_y_continuous(trans = "sqrt")` to get the correct scale on the y-axis.
* Use `facet_wrap(~year,nrow=1)` to divide the plot into separate panels.
* Use `labs()` to specify more informative x, y, size, and color keys.
* the result will look something like this (with the details filled in):
`ggplot(...) + geom_point() + facet_wrap(...) + scale_y_continuous(...) + ` `theme_bw() + labs(...)`
3. Prepare the data for the second plot
* Use `group_by()` to group by `continent` and `year`
* Use `summarize()` with the below commands to calculate the data for the black continent average line on the second plot:
* `gdpPercapweighted = weighted.mean(x = gdpPercap, w = pop)`
* `pop = sum(as.numeric(pop))`
* Save this aggregated data as an object called `gapminder_continent`
4. Plot #2 (the second row of plots)
* Use `ggplot()` and the `theme_bw()` to duplicate the second plot. In this plot you will add elements from both the raw gapminder dataset and your dataset summarized by continent. You will need to use the new data you summarized to add the black lines and dots showing the continent average. So it will look something like this:
` ggplot(gapminder,...) + geom_line() + geom_point() + geom_line(data=newdata,...) + ` `geom_point(data=newdata,...) + facet_wrap() + theme_bw() + labs(...)`
5. Use `ggsave()` or `png()` and save each plot as a `.png` with a width of 15 inches
6. Click `Source` to confirm that your script runs from start to finish without errors and saves the graphics.
7. Save your script as `case_study_03.R` or `case_study_03.Rmd` (if you are starting to play with R Markdown) in your course repository for week 3.
## Next steps
It's possible to do some data aggregation like this 'within' a ggplot call using the `stat_summary()` and friends. See [here](https://ggplot2.tidyverse.org/reference/stat_summary.html) for more details.
<i> <small> Adapted from [BYU M335 Data Science Course](https://byuistats.github.io/M335) </small> </i>