-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtemperature.Rmd
208 lines (176 loc) · 4.32 KB
/
temperature.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
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
---
title: "temperature"
author: "Gracie Goheen"
date: "`r Sys.Date()`"
output:
github_document:
toc: true
---
```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = TRUE)
```
```{r message=FALSE, warning=FALSE}
# Libraries
library(tidyverse)
library(lubridate)
# Parameters
temperature_data <- here::here("c01-own/data/temperature.rds")
temperature <- read_rds(temperature_data)
#===============================================================================
```
## Temperature by City
```{r}
summary(temperature)
```
```{r}
sum(is.na(temperature))
```
```{r}
temperature %>%
count(city_name)
```
```{r}
temperature %>%
mutate(date = ymd(date)) %>%
filter(year(date) == 2019)
```
```{r}
temperature %>%
top_n(n = 1, wt = temperature)
```
```{r}
temperature %>%
mutate(
date = ymd(date),
year = year(date)
) %>%
count(year) %>%
arrange(desc(year))
```
```{r}
temperature %>%
filter(city_name == "PERTH") %>%
ggplot(aes(date, temperature, color = temp_type)) +
geom_line()
```
```{r}
temperature %>%
mutate(date = ymd(date)) %>%
filter(
year(date) == 2019,
) %>%
ggplot(aes(date, temperature, color = temp_type)) +
geom_line() +
facet_wrap(vars(city_name))
```
```{r}
temperature %>%
group_by(city_name, temp_type) %>%
summarise(avg_temp = median(temperature, na.rm = TRUE)) %>%
ggplot(aes(fct_reorder(city_name, avg_temp), avg_temp, color = temp_type)) +
geom_point()
```
```{r}
temperature %>%
mutate(
city_name = as_factor(city_name)
) %>%
ggplot(aes(city_name, temperature, color = temp_type)) +
geom_boxplot(position = "dodge")
```
```{r}
temperature %>%
mutate(
year = year(date)
) %>%
group_by(year, temp_type) %>%
summarise(avg_temp = median(temperature, na.rm = TRUE)) %>%
ggplot(aes(year, avg_temp, color = temp_type)) +
geom_line()
```
```{r}
temperature %>%
mutate(
year = year(date)
) %>%
filter(year %in% c(2016:2019)) %>%
group_by(year, temp_type) %>%
summarise(avg_temp = median(temperature, na.rm = TRUE)) %>%
ggplot(aes(year, avg_temp, color = temp_type)) +
geom_line()
```
```{r}
# Attempt to recreate the New York Times "2019 was Australia’s hottest year" graph.
temperature %>%
drop_na() %>%
mutate(year = year(date)) %>%
group_by(year) %>%
summarise(temp_year = mean(temperature)) %>%
mutate(
avg_temp = mean(temp_year),
temp_dif = temp_year - avg_temp
) %>%
ggplot(aes(year, temp_dif)) +
geom_col()
```
```{r}
# Attempt to recreate the New York Times "2019 was Australia’s hottest year" graph.
temperature %>%
drop_na() %>%
filter(temp_type == "max") %>%
mutate(year = year(date)) %>%
group_by(year) %>%
# median or mean? max or min?
summarise(temp_year = mean(temperature)) %>%
mutate(
avg_temp = mean(temp_year),
temp_dif = temp_year - avg_temp
) %>%
ggplot(aes(year, temp_dif)) +
geom_col()
```
```{r}
# Attempt to recreate the New York Times "2019 was Australia’s hottest year" graph.
# The 1961–1990 average temperature
avg_temp_range <-
temperature %>%
drop_na() %>%
mutate(year = year(date)) %>%
filter(year %in% c(1961:1990)) %>%
summarize(mean(temperature))
temp_2019 <-
temperature %>%
drop_na() %>%
mutate(year = year(date)) %>%
group_by(year) %>%
summarise(temp_year = mean(temperature)) %>%
mutate(
temp_dif = temp_year - as.double(avg_temp_range)
) %>%
filter(year == 2019)
temperature %>%
drop_na() %>%
mutate(year = year(date)) %>%
group_by(year) %>%
summarise(temp_year = mean(temperature)) %>%
mutate(
temp_dif = temp_year - as.double(avg_temp_range)
) %>%
ggplot(aes(year, temp_dif)) +
geom_col(fill = "grey") +
geom_col(data = temp_2019, aes(year, temp_dif, fill = "red")) +
theme(
axis.title.x = element_blank(),
axis.ticks = element_blank(),
legend.position = "none",
panel.background = element_rect(fill = "transparent"),
panel.grid = element_line(color = "transparent"),
panel.grid.major.y = element_line(color = "White"),
panel.ontop = TRUE
) +
labs(
title = "2019 was Australia’s hottest year.",
y = "Annual temperature above or below the 1961–1990 average"
)
```
Something seems to be wrong with my data, because my graph looks very different. I also need to figure out how to do the y scale and caption / arrows.