-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmodifier.html
62 lines (55 loc) · 1.83 KB
/
modifier.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="style.css" rel="stylesheet">
<title>Modifier visualizations</title>
</head>
<body>
<header>
<h1>DHd 2023: »Die Greta Garbo der Leichtathletik«
– Eine systematische Analyse der Modifier vossianischer Antonomasien mithilfe von Word Embeddings</h1>
</header>
<main id="main_container">
<div id="visualization_container">
<!-- <div id="zoom_buttons">-->
<!-- <button id="zoom_in">Zoom In</button>-->
<!-- <button id="zoom_out">Zoom Out</button>-->
<!-- </div>-->
</div>
<div class="vertical_divider"></div>
<div id="insights_container">
<div id="reduction_container">
<h4>Choice of reduction algorithm:</h4>
<select id="selectButton"></select>
</div>
<hr class="horizontal_divider"/>
<div id="cluster_container">
<h4>Number of clusters:</h4>
<div id="slider"></div>
</div>
<hr class="horizontal_divider"/>
<div id="bar_container">
<h4>Number of Phrases per cluster</h4>
<svg id="bar_chart"></svg>
<hr class="horizontal_divider"/>
<h4>Topics</h4>
Click on one of the bars to highlight the cluster and to see the computed topics.
<div id="topics">
<ul>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
</ul>
</div>
</div>
</div>
</main>
<script src="https://unpkg.com/d3-simple-slider"></script>
<script src="https://d3js.org/d3.v6.js"></script>
<script src="scripte/modifier_vis2.js"></script>
</body>
</html>