-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
45 lines (43 loc) · 1.36 KB
/
index.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
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="UTF-8">
<title>Employee Database</title>
</head>
<body>
<section>
<h1>Employee-Database: Part 1</h1>
<p>
The intial purpose of this assignment was to conduct Data Engineering and Modeling for an employee database.
This was done using a Quick DBD tool that created the schema an was exported to PostgreSQL for analysis. Below is the schema...
</p>
<br/>
<article>
<a target="_blank" href="Images/QuickDBD-Employee Data.png">
<img src="Images/QuickDBD-Employee Data.png" alt="QuickDBD Schema" width="300" height="300">
</a>
<p><em>QuickDBD Schema</em></p>
</article>
<article>
<hr>
</article>
</section>
<section>
<h1>Employee-Database: Part 2</h1>
<p>
The second part of the assignment was to conduct an analysis of the Employee Database using not only PostgreSQL, but also Jupyter Notebooks.
From there, the data was loaded into a Pandas DF and Average Salary by Title was plotted with Matplotlib.
</p>
<br/>
<article>
<a target="_blank" href="Images/avg_salary_by_title.png">
<img src="Images/avg_salary_by_title.png" alt="Average Salary By Title" width="300" height="300">
</a>
<p><em>Average Salary By Title</em></p>
</article>
<article>
<hr>
</article>
</section>
</body>
</html>