-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
31 lines (29 loc) · 943 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Visualizzazione di dati bibliometrici</title>
<link href="prova.css" rel="stylesheet">
<!-- Import Vega 5 & Vega-Lite 3 (does not have to be from CDN) -->
<script src="https://cdn.jsdelivr.net/npm/vega@5"></script>
<script src="https://cdn.jsdelivr.net/npm/vega-lite@3.4.0"></script>
<!-- Import vega-embed -->
<script src="https://cdn.jsdelivr.net/npm/vega-embed@4"></script>
</head>
<body>
<div id="content">
<h1>TESI</h1>
<div id="profilo">
<h2>Profilo</h2>
<p>Nome: Luigi</p><p>Cognome: De Russis</p><p>Matricola: 025734</p><p>Qualifica:RA</p>
</div>
<div id="scatterplot"></div>
<div id="wordcloud"></div>
<div id="histogram1"></div>
<div id="bubbleplot1"></div>
<div id="histogram2"></div>
<div id="bubbleplot2"></div>
<script src="visualizza.js"> </script>
</div>
</body>
</html>