-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
46 lines (38 loc) · 1.46 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Augmented APM</title>
<link rel="stylesheet" href="style.css?v=1.1">
<script type="text/javascript" src="d3.js"></script>
</head>
<body>
<header>
<a href="../">
<img src="logo.png", width=250px>
</a>
</header>
<div id="page-wrap">
<br>
<h1>Augmented Adjusted Plus-Minus</h1>
<p class="description">Sortable table with modeling results from the paper: <a href="https://arxiv.org/abs/1810.08032">Augmenting Adjusted Plus-Minus in Soccer with FIFA Ratings</a></p>
<br>
<div id="buttons">
Season: <form>
<select class="selector" id="season">
<option value="2015">2015-16</option>
<option value="2016">2016-17</option>
<option value="2017" selected="selected">2017-18</option>
</select>
</form>
<!-- add horizontal space -->
League: <form>
<select class="selector" id="league">
<option value="epl" selected="selected">English Premier League</option>
</select>
</form>
</div>
<script type="text/javascript" src = "rpm-table.js?v=1.1"> </script>
</div>
</body>
</html>