-
Notifications
You must be signed in to change notification settings - Fork 0
/
stats.html
95 lines (90 loc) · 4.63 KB
/
stats.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
90
91
92
93
94
95
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>CEDAR - Dutch historical census dataset</title>
<!-- Bootstrap -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/vt.css" rel="stylesheet">
</head>
<body>
<div id="nav" class="navbar navbar-default navbar-fixed-top" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="index.html" style="max-width: 100%;">
<img class="img-responsive pull-left" src="img/cedar_150x50.png" style="margin-top: -12px;">
</a>
</div>
<div class="navbar-collapse collapse">
<ul class="nav navbar-nav navbar-right">
<li><a href="data.html"><span class="glyphicon glyphicon-hdd"></span> Data</a></li>
<li class="active"><a href="stats.html"><span class="glyphicon glyphicon-stats"></span> Statistics</a></li>
<li><a href="info.html"><span class="glyphicon glyphicon-info-sign"></span> Information</a></li>
</ul>
</div><!--/.nav-collapse -->
</div>
</div>
<div class="container" id="main-container">
<div class="page-header">
<h2><span class="glyphicon glyphicon-stats"></span> Statistics over the data integration process</h2>
</div>
<h3>Datasets per census type and year</h3>
<p>This table compare the total number of sheets found in the original dataset grouped by census type and year (first column).
The value is to be compared with the total number of sheets that could be converted to RDF using tablink (second column).</p>
<div class="row">
<div class="col-md-12">
<table class="table table-condensed table-hover ">
<thead>
<tr>
<th>Census type and year</th>
<th>Number of expected sheets</th>
<th>Number of processed sheets</th>
</tr>
</thead>
<tbody id="table_nb_parsed_sheets_overview">
</tbody>
</table>
</div>
</div>
<div class="row">
<div class="col-md-12">
<div class="collapse-group">
<button type="button" class="btn btn-primary" data-toggle="collapse"
data-target="#viewdetails">View breakdown per Excel file
»</button>
<span id="viewdetails" class="collapse">
<table class="table table-condensed table-hover">
<thead>
<tr>
<th>Excel file</th>
<th>Number of expected sheets</th>
<th>Number of processed sheets</th>
</tr>
</thead>
<tbody id="table_nb_parsed_sheets">
</tbody>
</table>
</span>
</div>
</div>
</div>
<hr/>
<footer>
<p>© Data Archiving and Networked Services (DANS) 2014</p>
</footer>
</div> <!-- /container -->
<script type="text/javascript" src="js/jquery.min.js"></script>
<script type="text/javascript" src="js/jquery.flot.min.js"></script>
<script type="text/javascript" src="js/jquery.flot.pie.min.js"></script>
<script type="text/JavaScript" src="js/bootstrap.min.js"></script>
<script type="text/javascript" src="js/stats.js"></script>
</body>
</html>