-
Notifications
You must be signed in to change notification settings - Fork 1
/
home.html
49 lines (49 loc) · 2.85 KB
/
home.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
<!DOCTYPE html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>24ToCode Energy Challenge</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="home.css">
<link rel="shortcut icon" type="image/x-icon" href="Images/favicon.ico"/>
</head>
<body>
<div class="headerSec2">
<img class="rockPic" src="Images/RockwellLogo2.png">
<h1 class="headerText">The Bowtie Boyz -- Energy Management Toolkit </h1>
</div>
<div class="probDesc">
<h5 class="probHeader">24ToCode 2019 -- Problem Description</h5>
<p class="probDesc2">For this Hackathon, we wanted to focus on <span class="bold">facility data analytics</span>. Here at Rockwell, <span class="bold">manufacturing</span> is the heart of our industry -- it's of critical importance that we manufacture effectively. We've created a simple web app for <span class="bold">easy user access</span> (think something like energy.ra.rockwell.com), <span class="bold">real-time data</span> visualizations to allow for greater insight, and predictive <span class="bold">Machine Learning models</span> to try and mitigate the costs of <span class="bold">Peak Demand Hours</span> before they occur. </p>
</div>
<div class="statSection">
<h5 class="statHeader">So why does it matter?</h5>
<div class="money">
<img class="statIcon" src="Images/dollar.png">
<h5 class="statDesc">Saves money for our corporation</h5>
</div>
<div class="earth">
<img class="statIcon" src="Images/earth.png">
<h5 class="statDesc">Contributes to a healthier Earth</h5>
</div>
<div class="government">
<img class="statIcon" src="Images/auction.png">
<h5 class="statDesc">Tax Credits for less emissions</h5>
</div>
</div>
<h5 class="howHeader">So how'd you do it?</h5>
<h4 class="answer">Pandas: Used for Data Analytics & Original Overview</h4>
<h4 class="answer">Python: Used with Seaborn for Visualization</h4>
<h4 class="answer">Sci-kit Learn: Used to implement predictive Machine Learning Models</h4>
<h4 class="answer">Pickle: Used for real-time data visualization</h4>
<h4 class="answer">JQuery: Used for this beautiful web-app</h4>
<div class="seeIt">
<h5 class="seeItHeader">So... let's see it!</h5>
<div class="pageButton">
<a href="page2.html"><h5 class="buttonText">Let's Go!</h5></a>
</div>
</div>
<script src="home.js"></script>
</body>
</html>