-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlat_humidity.html
114 lines (88 loc) · 4.26 KB
/
lat_humidity.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Bootstrap Visualization Dashboard</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<link rel="stylesheet" href="style.css">
</head>
<body>
<nav class="navbar navbar-default">
<div class="container-fluid">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1" aria-expanded="false">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="index.html">Latitude</a>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav navbar-right">
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Plots <span class="caret"></span></a>
<ul class="dropdown-menu">
<li><a href="lat_temperature.html">Max Temperature</a></li>
<li><a href="lat_humidity.html">Humidity</a></li>
<li><a href="lat_cloudiness.html">Cloudiness</a></li>
<li><a href="lat_wind.html">Wind Speed</a></li>
</ul>
</li>
<li><a href="comparison.html">Comparison</a></li>
<li><a href="data.html">Data</a></li>
</ul>
</div>
<!-- /.navbar-collapse -->
</div>
<!-- /.container-fluid -->
</nav>
<!-- Creates the Overall Grid -->
<div class="container">
<div class="row">
<div class="col-md-6 pad top"> <br>
<h3>Humidity</h3> <br>
</div>
<div class="col-md-6 pad top"> <br>
<h3>Visualizations</h3> <br>
</div>
</div>
<div class="row">
<div class="col-md-6 pad top"> <br>
<div>
<img src="Plots/lat_humidity.png" alt="Humidity" width="500" height="357">
</div><br>
<div>
<p> There isn't much of a recognizable pattern relating humidity to latitude as can be seen from the graph above.
We can say that there is a potential that humidity tends to be higher in areas closer to the equator as it
seems looking at the graph that it may be the case. However, it is still uncertain and more data would need
to be gathered and plotted to confirm this suspicion. </p> <br>
</div>
</div>
<div class="col-md-3 pad top"> <br>
<div class="pull-right">
<a href="lat_temperature.html"><img src="Plots/lat_temperature.png" alt="Latitude vs. Max Temperature" width="100%" height="100%"></a>
<a href="lat_cloudiness.html"><img src="Plots/lat_cloudiness.png" alt="Latitude vs. Cloudiness" width="100%" height="100%"></a>
</div>
</div>
<div class="col-md-3 pad top"> <br>
<div class="pull-right">
<a href="lat_humidity.html"><img src="Plots/lat_humidity.png" alt="Latitude vs. Humidity" width="100%" height="100%"></a>
<a href="lat_wind.html"><img src="Plots/lat_wind.png" alt="Latitude vs. Wind Speed" width="100%" height="100%"></a>
</div>
</div>
</div>
</div>
<!-- Footer -->
<footer class="footer navbar-fixed-bottom">
<div class="two-toned-footer-color"></div>
<p class="text-muted text-muted-footer text-center">
© Copyright Coding Bootcamp 2019
</p>
</footer>
</body>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.7/js/bootstrap.min.js"></script>
</html>