-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
89 lines (66 loc) · 3.79 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
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
<!DOCTYPE html>
<html>
<head>
<title>Olist Dashboard</title>
<link rel="stylesheet" href="main.css">
</head>
<body>
<h1>Olist Dashboard</h1>
<span style="float:left; width:100%; height: 600px">
<iframe id="igraph" scrolling="no" style="border:none;" seamless="seamless" src="visuals/byDate-order.html" height="500" width="100%"></iframe>
</span>
<span style="float:left; width:100%; height: 600px">
<iframe id="igraph" scrolling="no" style="border:none;" seamless="seamless" src="visuals/byDate-revenue.html" height="500" width="100%"></iframe>
</span>
<span style="float:left; width:40%; height: 600px">
<iframe id="igraph" scrolling="no" style="border:none;" seamless="seamless" src="visuals/map.html" height="500" width="40%"></iframe>
</span>
<span style="float:right; width:60%; height: 600px">
<iframe id="igraph" scrolling="no" style="border:none;" seamless="seamless" src="visuals/byWkdHr-heatmap.html" height="500" width="60%"></iframe>
</span>
<span style="float:left; width:50%; height: 600px">
<iframe id="igraph" scrolling="no" style="border:none;" seamless="seamless" src="visuals/byMonth_revenue_number_new_vs_return.html" height="500" align="left" ></iframe>
</span>
<span style="float:right; width:50%; height: 600px">
<iframe id="igraph" scrolling="no" style="border:none;" seamless="seamless" src="visuals/byMonth_revenue_growth_new_vs_return.html" height="500" align="right" ></iframe>
</span>
<span style="float:left; width:50%; height: 600px">
<iframe id="igraph" scrolling="no" style="border:none;" seamless="seamless" src="visuals/byMonth_newCus.html" height="600" align="left"></iframe>
</span>
<span style="float:right; width:50%; height: 600px">
<iframe id="igraph" scrolling="no" style="border:none;" seamless="seamless" src="visuals/byMonth_newCus_growth.html" height="600" align="right"></iframe>
</span>
<h2>Customer Segmentation</h2>
<span style="float:right; width:33%; height: 600px">
<iframe id="igraph" scrolling="no" style="border:none;" seamless="seamless" src="visuals/segment_recency_monetary.html" height="600" align="left"></iframe>
</span>
<span style="float:left; width:33%; height: 600px">
<iframe id="igraph" scrolling="no" style="border:none;" seamless="seamless" src="visuals/segment_recency_frequency.html" height="600" align="left"></iframe>
</span>
<span style="float:left; width:33%; height: 600px">
<iframe id="igraph" scrolling="no" style="border:none;" seamless="seamless" src="visuals/segment_monetary_frequency.html" height="600" align="right"></iframe>
</span>
<span style="float:left; width:50%; height: 800px">
<iframe id="igraph" scrolling="no" style="border:none;" seamless="seamless" src="visuals/3D-grid.html" height="600" width="100%"></iframe>
</span>
<span style="float:left; width:50%; height: 800px">
<iframe id="igraph" scrolling="no" style="border:none;" seamless="seamless" src="visuals/tree-map.html" height="600" width="100%"></iframe>
</span>
<p> <a href="https://github.com/dailyLi/olist_digital_marketing">Check the code files on GitHub</a> </p>
</body>
<style>
iframe {
float: left;
width: 100%;
height: 700px;
border-top-width: 0px;
border-right-width: 0px;
border-bottom-width: 0px;
border-left-width: 0px;
border-style: inset;
border-color: initial;
border-image: initial;
}
</style>
</html>
<!--