-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomparisons.html
59 lines (57 loc) · 2.62 KB
/
comparisons.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
<!DOCTYPE html>
<!-- the doctype declaration should be included at the start of the HTML document -->
<html lang="en">
<head>
<title>Comparison Visualizations</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<link rel="stylesheet" href="static/style.css" media="screen">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
<body>
<!--start of header div-->
<div class="btn-group">
<button type="button" class="btn btn-primary dropdown-toggle" data-toggle="dropdown">
Plots
</button>
<div class="dropdown-menu">
<a class="dropdown-item" href="LatitudevsMaxTemperature.html">Max Temp</a>
<a class="dropdown-item" href="LatitudevsHumidity.html">Humidity</a>
<a class="dropdown-item" href="LatitudevsCloud.html">Cloudiness</a>
<a class="dropdown-item" href="LatitudevsWind.html">Wind</a>
</div>
</div>
</div>
</div>
<li><a href="index.html">Home</a></li>
<li><a href="cities_data.html">Data</a></li>
<li><a href="comparisons.html">Comparisons</a></li>
<!--end of header div-->
<h1 style="background-color:#008B8B; color:#FFFFFF;">Latitude: A Study of Weather Patterns</h1>
<br>
<br>
<h1 style="background-color:#008B8B; color:#FFFFFF;"> COMPARISON:</h1>
<div class="4-image-div">
<div class="row">
<div class="col-md-6">
<a href= "LatitudevsMaxTemperature.html"><img src="Fig1.png" alt="Lat vs Max Temp" style="width:500px;height:400px;">
</a>
</div>
<div class="col-md-6">
<a href= "LatitudevsHumid.html"><img src="Fig2.png" alt="Lat vs Humidity" style="width:500px;height:400px;">
</a>
</div>
<div class="col-md-6">
<a href= "LatitudevsCloud.html"><img src="Fig3.png" alt="Lat vs Cloudiness" style="width:500px;height:400px;">
</a>
</div>
<div class="col-md-6">
<a href= "LatitudevsWind.html"><img src="Fig4.png" alt="Lat vs Wind Speed" style="width:500px;height:400px;">
</a>
</div>
</div>
<p>As is evident from the minimal comparison plots conducted, it appears taht the hypothesis that cities closer to the equator do enjoy higher temperatures.
</body>
</html>