-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmaxtemp.html
210 lines (201 loc) · 11.4 KB
/
maxtemp.html
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
209
210
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css"
integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh"
crossorigin="anonymous">
<link rel="stylesheet"
href="styles.css">
<title>Latitude Analyses: Latitude vs. Max Temperatures</title>
</head>
<body>
<div class="container-md">
<header>
<nav class="navbar
navbar-expand-md
navbar-dark
bg-dark">
<a href="index.html" class="navbar-brand">Latitude Analysis</a>
<button type="button"
data-toggle="collapse"
data-target="#navbarSupportedContent"
aria-controls="navbarSupportedContent"
aria-expanded="false"
aria-label="Toggle Navigation"
class="navbar-toggler">
<span class="navbar-toggler-icon"></span>
</button>
<div id="navbarSupportedContent"
class="collapse
navbar-collapse
justify-content-end">
<ul class="navbar-nav">
<li class="nav-item dropdown">
<a id="navbarDropdownMenuLink"
href="#"
role="button"
data-toggle="dropdown"
aria-haspopup="true"
aria-expanded="false"
class="nav-link
dropdown-toggle
active">
Plots</a>
<div aria-labelledby="navbarDropdownMenuLink"
class="dropdown-menu">
<a href="maxtemp.html" class="dropdown-item active bg-dark">Max Temp</a>
<a href="humidity.html" class="dropdown-item">Humidity</a>
<a href="cloudiness.html" class="dropdown-item">Cloudiness</a>
<a href="windspeed.html" class="dropdown-item">Wind Speed</a>
</div>
</li>
<li class="nav-item">
<a href="comparisons.html" class="nav-link">Comparisons</a></li>
<li class="nav-item">
<a href="data.html" class="nav-link">Data</a></li>
</ul>
</div>
</nav>
</header>
<main>
<div class="row">
<div class="col-md-8">
<article>
<h1 class="h1_main">Latitude vs. Max Temperatures </h1>
<div class="row">
<div class="col-md-6">
<figure class="figure">
<img src="visualizations/maxtemp_cropped.png"
alt="Graph showing relationship between latitude and max temperatures."
class="figure-img
img-fluid">
<figcaption class="figure-caption
text-center
font-italic
font-weight-bold
mainFigure_caption">
Latitude vs Max Temp
</figcaption>
</figure>
</div>
<div class="col-md-6">
<p class="question">How does the average temperature increase or decrease as one changes
one's distance
to the equator?</p>
<p>We have a common sense intution that temperatures increase as we get closer to the
equator, and that they decrease the farther we get away from it, but how do we
quantify that?
</p>
</div>
</div>
<div class="row">
<div class="col-md-12">
<p>Looking at our basic plot above, we see that the highest max temperature points are
clustered
around Latitude 0, and that the temperatures decrease as one moves more north or
more south.
Even though there are outliers (especially in the southern hemisphere),
these findings show how the cities around the equator are generally hotter than
cities farther from it.
</p>
<p>When we look at a plot that has a regression line on it, we see the relationship a
little bit clearer:</p>
<figure class="figure">
<img src="visualizations/latitude_vs_maxtemp.png"
alt="Graph showing relationship between latitude and max temperatures, with regression line."
class="figure-img
img-fluid
rounded">
<figcaption class="figure-caption
text-center
font-italic
font-weight-bold
mainFigure_caption">
Latitude vs Max Temp (with regression line)
</figcaption>
</figure>
<p>When we group the means by latitude (using the absolute value of the latitude,
instead of keeping the hemisphere references),
we see a clear trend of decreasing max temp mean as we go up in our latitude groups:
</p>
<figure class="figure">
<img src="visualizations/max_temp_means.png"
alt="Graph showing relationship between latitude and means of temperatures, by latitude."
class="figure-img
img-fluid
rounded">
<figcaption class="figure-caption
text-center
font-italic
font-weight-bold
mainFigure_caption">
Line graph of absolute value of Latitude vs Mean of Temp
</figcaption>
</figure>
</div>
</div>
</article>
</div>
<div class="col-md-4">
<aside>
<h1 class="h1_aside">Visualizations</h1>
<nav class="nav">
<div id="visualization_links"
class="row
row-cols-1
row-cols-sm-2">
<div class="col">
<a href="maxtemp.html" class="nav-link
viz_links
viz_links_active">
vs. Max Temp
<img src="visualizations/maxtemp_cropped.png"
alt="Graph showing relationship between latitude and max temperatures."
class="img-fluid"></a>
</div>
<div class="col">
<a href="humidity.html" class="nav-link viz_links">
vs. Humidity
<img src="visualizations/humidity_cropped.png"
alt="Graph showing relationship between latitude and humidity."
class="img-fluid"></a>
</div>
<div class="col">
<a href="cloudiness.html" class="nav-link viz_links">
vs. Cloudiness
<img src="visualizations/cloudiness_cropped.png"
alt="Graph showing relationship between latitude and cloudiness."
class="img-fluid"></a>
</div>
<div class="col">
<a href="windspeed.html" class="nav-link viz_links">
vs. Windspeed
<img src="visualizations/windspeed_cropped.png"
alt="Graph showing relationship between latitude and wind speeds."
class="img-fluid"></a>
</div>
</div>
</nav>
</aside>
</div>
</div>
</main>
<footer class="bg-dark">
© Copyright: Joseph DiCastro 2019
</footer>
</div>
</body>
<script src="https://code.jquery.com/jquery-3.4.1.slim.min.js"
integrity="sha384-J6qa4849blE2+poT4WnyKhv5vZF5SrPo0iEjwBvKU7imGFAV0wwj1yYfoRSJoZ+n"
crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js"
integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo"
crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js"
integrity="sha384-wfSDF2E50Y2D1uUdj0O3uMBJnjuUD4Ih7YwaYd1iqfktj0Uod8GCExl3Og8ifwB6"
crossorigin="anonymous"></script>
</html>