-
Notifications
You must be signed in to change notification settings - Fork 1
/
1-got_ratings.Rmd
155 lines (104 loc) · 2.78 KB
/
1-got_ratings.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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
---
title: "Game of Thromes Character Ratings"
author: "Angela Zoss"
date: "9/25/2017"
output: github_document
---
```{r setup, include=FALSE}
knitr::opts_chunk$set(error = TRUE)
```
## Setup your environment
```{r}
# Load required libraries
library(tidyverse)
```
## Load your data
```{r}
# data comes from https://int.nyt.com/newsgraphics/2017/2017-07-17-got-matrix/mean.json
# data based on ratings using tool at https://www.nytimes.com/interactive/2017/08/09/upshot/game-of-thrones-chart.html
got <- read_csv("data/got_ratings.csv")
```
## Plot the data
```{r}
ggplot(got, aes(x=moral,y=physical))
```
## Add labels
```{r}
ggplot(got, aes(x=moral,y=physical)) +
geom_point()
```
## Add colors
```{r}
ggplot(got, aes(x=moral,y=physical)) +
geom_point() +
geom_text(aes(label=label), nudge_y = -.03)
```
## Switch Y axis
```{r}
ggplot(got, aes(x=moral,y=physical, color=gender)) +
geom_point() +
geom_text(aes(label=label), nudge_y = -.03)
```
## Add reference lines
```{r}
ggplot(got, aes(x=moral,y=physical, color=gender)) +
geom_point() +
scale_y_reverse() +
geom_text(aes(label=label), nudge_y = -.03)
```
## Change axis limits
```{r}
ggplot(got, aes(x=moral,y=physical, color=gender)) +
geom_point() +
scale_y_reverse() +
geom_hline(yintercept=.5) +
geom_vline(xintercept=.5) +
geom_text(aes(label=label), nudge_y = -.03)
```
## Change the theme
```{r}
ggplot(got, aes(x=moral,y=physical, color=gender)) +
geom_point() +
scale_y_reverse(lim=c(1,0)) +
geom_hline(yintercept=.5) +
geom_vline(xintercept=.5) +
geom_text(aes(label=label), nudge_y = -.03) +
scale_x_continuous(limits=c(0,1))
```
## Turn off legend for text layer
```{r}
ggplot(got, aes(x=moral,y=physical, color=gender)) +
geom_point() +
scale_y_reverse(lim=c(1,0)) +
geom_hline(yintercept=.5) +
geom_vline(xintercept=.5) +
geom_text(aes(label=label), nudge_y = -.03) +
scale_x_continuous(limits=c(0,1)) +
theme_bw()
```
## Annotate the axes
```{r}
ggplot(got, aes(x=moral,y=physical, color=gender)) +
geom_point() +
scale_y_reverse(lim=c(1,0)) +
geom_hline(yintercept=.5) +
geom_vline(xintercept=.5) +
geom_text(aes(label=label), nudge_y = -.03, show.legend = FALSE) +
scale_x_continuous(limits=c(0,1)) +
theme_bw()
```
## Lighten the lines
```{r}
ggplot(got, aes(x=moral,y=physical, color=gender)) +
geom_point() +
scale_y_reverse(lim=c(1,0)) +
geom_hline(yintercept=.5) +
geom_vline(xintercept=.5) +
geom_text(aes(label=label), nudge_y = -.03, show.legend = FALSE) +
scale_x_continuous(limits=c(0,1)) +
theme_bw() +
annotate(geom = "text", x=.5, y=1, label="Ugly") +
annotate(geom = "text", x=.5, y=0, label="Beautiful") +
annotate(geom = "text", x=0, y=.48, label="Evil") +
annotate(geom = "text", x=1, y=.52, label="Good")
```