-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
78 lines (68 loc) · 2.66 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-HCH7J6RW3H"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'G-HCH7J6RW3H');
</script>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Tennis Match Rank Difference vs Betting Odds</title>
<link rel="stylesheet" type="text/css" href="tennis_data_co_uk_apachejs.css">
</head>
<body>
<h1>Tennis Matches by Rank Difference, Outcome & B365 Betting Odds</h1>
<p>Data from <a href="http://www.tennis-data.co.uk/" target="_blank">tennis-data.co.uk</a></p>
<div class="main-container">
<div id="sidebar">
<p>Year & Gender</p>
<ul id="fileList"></ul>
<p>Tournament</p>
<ul id="tournamentList"></ul>
</div>
<div class="content">
<div id="visualization">
<!-- ECharts visualization will go here -->
</div>
<div id="table-container">
<table id="data-table" border="1">
<thead>
<tr>
<th>Rank Diff</th>
<th>Bet365 Odds</th>
<th>Winner Name</th>
<th>Winner Rank</th>
<th>Loser Name</th>
<th>Loser Rank</th>
<th>Match Date</th>
<th>Round</th>
<th>Sets</th>
<th>Odds Winner</th>
<th>Odds Loser</th>
</tr>
</thead>
<tbody>
<!-- Data rows will be added here -->
</tbody>
</table>
</div>
</div>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/PapaParse/5.0.2/papaparse.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/echarts/dist/echarts.min.js"></script>
<script src="tennis_data_co_uk_apachejs.js"></script>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-HCH7J6RW3H"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'G-HCH7J6RW3H');
</script>
</body>
</html>