-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
53 lines (45 loc) · 1.5 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
46
47
48
49
50
51
52
53
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>4030 Project G7</title>
<link rel="stylesheet" type="text/css" href="styles.css">
<script src="https://d3js.org/d3.v7.js"></script>
<script src="stackedBar.js"></script>
<script src="radarchart.js"></script>
<script src="pieCharts.js"></script>
</head>
<body>
<div class="dashboard">
<div class="stackedBar">
<h4>Purchase Frequency by Age and Gender of Amazon Customers</h4>
<div id="stackedBar"></div>
</div>
<div id="secondRowOfStuff">
<!--<div class="row2Thing">
<svg id="visual2"></svg>
</div> -->
<!--<div id="pie-charts-container"> -->
<div id="pie-chart-gender-container" class="row2Thing">
<svg id="pie-chart-gender"></svg>
<div class="text">
<p>
Selection (Gender)
</p>
</div>
</div>
<div class="row2Thing">
<svg id="visual2"></svg>
</div>
<div id="pie-chart-age-container" class="row2Thing">
<svg id="pie-chart-age"></svg>
<div class="text">
<p>
Selection (Age)
</p>
</div>
</div>
<!-- </div> -->
</div>
</body>
</html>