-
Notifications
You must be signed in to change notification settings - Fork 0
/
details.html
243 lines (237 loc) · 19.8 KB
/
details.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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
---
---
<html lang="en">
<head>
<meta charset="utf-8"/>
<title>Treemap Survey</title>
<meta content="Treemap Survey" name="description"/>
<meta content="VARG" name="author"/>
<meta content="width=device-width, initial-scale=1, shrink-to-fit=no" name="viewport">
<!-- TODO replace with local imports -->
<link crossorigin="anonymous" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" integrity="sha384-TX8t27EcRE3e/ihU7zmQxVncDAy5uIKz4rEkgIXeMed4M0jlfIDPvg6uqKI2xXr2" rel="stylesheet"/>
<!-- Bootstrap CSS CDN -->
<link crossorigin="anonymous" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.0/css/bootstrap.min.css" integrity="sha384-9gVQ4dYFwwWSjIDZnLEWnxCjeSWFphJiwGPXr1jddIhOegiu1FwO5qRGvFXOdJZ4" rel="stylesheet">
<!-- Scrollbar Custom CSS -->
<link href="https://cdnjs.cloudflare.com/ajax/libs/malihu-custom-scrollbar-plugin/3.1.5/jquery.mCustomScrollbar.min.css" rel="stylesheet">
<!-- Our Custom CSS -->
<link rel="stylesheet" href="/css/sidebar.css">
<link rel="stylesheet" href="/css/style.css">
<!-- Font Awesome JS -->
<script crossorigin="anonymous" defer integrity="sha384-tzzSw1/Vo+0N5UhStP3bvwWPq+uvzCMfrN1fEFe+xBmv1C/AtVX5K0uZtmcHitFZ" src="https://use.fontawesome.com/releases/v5.0.13/js/solid.js"></script>
<script crossorigin="anonymous" defer integrity="sha384-6OIrr52G08NpOFSZdxxz1xdNSndlD4vdcf/q2myIUVO0VsqaGHJsB0RaBE01VTOY" src="https://use.fontawesome.com/releases/v5.0.13/js/fontawesome.js"></script>
</head>
<body>
<div class="wrapper">
<!-- Page Content -->
<div id="content" class="active">
<nav class="navbar navbar-expand-lg navbar-light bg-light">
<div class="container-fluid">
<button type="button" class="btn btn-outline-dark mr-4" onclick="window.location.href='index.html';">Back</button>
<!--<button class="btn btn-info" id="sidebarCollapse" type="button">
<i class="fas fa-align-left"></i>
<span>Setting</span>
</button>
<button aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation" class="btn btn-dark d-inline-block d-lg-none ml-auto" data-target="#navbarSupportedContent" data-toggle="collapse" type="button">
<i class="fas fa-align-justify"></i>
</button>-->
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<h1>Treemap Studies</h1>
</div>
</div>
</nav>
<div id="studies">
{% for survey in site.data.studies["user studies"] %}
{% assign study_id = survey['study-id'] %}
<div class="study" id="{{study_id}}">
<div>
<h2>{{survey["name"]}}</h2>
<table class="table table-sm m-4">
<tbody>
<tr><td class="left">ID</td><td>{{survey["study-id"]}}</td></tr>
<tr><td class="left">Short Name</td><td>{{survey["short name"]}}</td></tr>
<tr><td class="left">Subject</td><td>{{survey["subject"]}}</td></tr>
<tr><td class="left">Claims</td><td>{{survey["claims"]}}</td></tr>
<tr><td class="left">Cited By</td><td>{{survey["cited by"]}}</td></tr>
</tbody>
</table>
</div>
<div class="m-4">
<div>
<h3>Categorization</h3>
<table class="table table-sm ">
<tbody>
<tr><td class="left">Evaluation Practice</td><td>{%assign values = survey["categorization"]["Plaisant"] | compact %}{%include table-content.html%}</td></tr>
<tr><td class="left">Leroy</td><td>{%assign values = survey["categorization"]["Leroy"] | compact %}{%include table-content.html%}</td></tr>
</tbody>
</table>
</div>
<div>
<h3>Evaluation</h3>
<table class="table table-sm">
<tbody>
<tr><td class="left">Hypotheses</td><td>{%assign values = survey["evaluation"]["hypotheses"] | compact %}{%include table-content.html%}</td></tr>
<tr><td class="left">Data Type</td><td>{%assign values = survey["evaluation"]["design"]["type"] | compact %}{%include table-content.html%}</td></tr>
<tr><td class="left">Independent Variables Design</td><td>{%assign values = survey["evaluation"]["design"]["independent variables design"] | compact %}{%include table-content.html%}</td></tr>
<tr><td class="left">Independent Variables</td><td>{%assign values = survey["evaluation"]["design"]["independent variables"] | compact %}{%include table-content.html%}</td></tr>
</tbody>
</table>
<div>
<div class="p-4">
<h4>Participants</h4>
<table class="table table-sm">
<tbody>
<tr><td class="left">Count</td><td>{%assign values = survey["evaluation"]["participants"]["count"] | compact %}{%include table-content.html%}</td></tr>
<tr><td class="left">Characterization</td><td>{%assign values = survey["evaluation"]["participants"]["characterization"] | compact %}{%include table-content.html%}</td></tr>
<tr><td class="left">Implementation</td><td>{%assign values = survey["evaluation"]["participants"]["implementation"] | compact %}{%include table-content.html%}</td></tr>
</tbody>
</table>
</div>
<div class="p-4">
<h4>Dataset</h4>
<table class="table table-sm ">
<tbody>
<tr><td class="left">Dataset Topology</td><td>{%assign values = survey["evaluation"]["dataset"]["topology"] | compact %}{%include table-content.html%}</td></tr>
<tr><td class="left">Dataset Origin</td><td>{%assign values = survey["evaluation"]["dataset"]["origin"] | compact %}{%include table-content.html%}</td></tr>
<tr><td class="left">Number of Nodes</td><td>{% assign id = 'dataset-size' %}{%assign values = survey["evaluation"]["dataset"]["number of nodes"] | compact %}{%include table-content.html%}{% assign id = 'other' %}</td></tr>
</tbody>
</table>
</div>
<div class="p-4">
<h4>Treemap Configuration(s)</h4>
{% if survey["evaluation"]["treemap configuration"].size != 8 %}
<div class="d-flex flex-row flex-wrap">
{% for config in survey["evaluation"]["treemap configuration"] %}
<div class="pr-5">
<h5>Treemap Configuration</h5>
{% include treemap-config.html %}
</div>
{% endfor %}
</div>
{% else %}
{% assign config = survey["evaluation"]["treemap configuration"] %}
{% include treemap-config.html %}
{% endif %}
</div>
<div class="p-4">
<h4>Entry and Debriefing Participants</h4>
<table class="table">
<tbody>
<tr><td class="left">Training</td><td>{%assign values = survey["evaluation"]["entry and debriefing"]["training"] | compact %}{%include table-content.html%}</td></tr>
<tr><td class="left">User Opinion</td><td>{%assign values = survey["evaluation"]["entry and debriefing"]["user opinion"] | compact %}{%include table-content.html%}</td></tr>
</tbody>
</table>
</div>
<div class="p-4">
<h4>Tasks</h4>
<table class="table table-sm ">
<tbody>
<tr><td class="left">Task List</td><td>{% assign id = 'task-list' %}{%assign values = survey["evaluation"]["tasks"]["task list"] | compact %}{%include table-content.html%}{% assign id = 'other' %}</td></tr>
<tr><td class="left">Verbal Metaphor</td><td>{%assign values = survey["evaluation"]["tasks"]["metaphor"] | compact %}{%include table-content.html%}</td></tr>
<tr><td class="left">Task Dimensionality</td><td>{%assign values = survey["evaluation"]["tasks"]["dimensionality"] | compact %}{%include table-content.html%}</td></tr>
</tbody>
</table>
</div>
<div class="p-4">
<h4>Measurement</h4>
<table class="table">
<tbody>
<tr><td class="left">Measurement Type(s)</td><td>{%assign values = survey["evaluation"]["measurement"]["measure types"] | compact %}{%include table-content.html%}</td></tr>
<tr><td class="left">Effectiveness Measure(s)</td><td>{%assign values = survey["evaluation"]["measurement"]["effectiveness measures"] | compact %}{%include table-content.html%}</td></tr>
<tr><td class="left">Response Type(s)</td><td>{%assign values = survey["evaluation"]["measurement"]["response types"] | compact %}{%include table-content.html%}</td></tr>
</tbody>
</table>
</div>
</div>
</div>
<div>
<h3>Results and Analysis</h3>
<div>
<div class="p-4">
<h4>Paper Excerpts</h4>
<table class="table">
<tbody>
<tr><td class="left">Results</td><td>{%assign values = survey["results and analysis"]["paper excerpts"]["results"] | compact %}{%include table-content.html%}</td></tr>
<tr><td class="left">Unproven Results</td><td>{%assign values = survey["results and analysis"]["paper excerpts"]["unproven results"] | compact %}{%include table-content.html%}</td></tr>
<tr><td class="left">Result Based Claims</td><td>{%assign values = survey["results and analysis"]["paper excerpts"]["result based claims"] | compact %}{%include table-content.html%}</td></tr>
<tr><td class="left">Unproven Claims</td><td>{%assign values = survey["results and analysis"]["paper excerpts"]["unproven claims"] | compact %}{%include table-content.html%}</td></tr>
<tr><td class="left">Treemap Rating</td><td>{%assign values = survey["results and analysis"]["paper excerpts"]["treemap rating"] | compact %}{%include table-content.html%}</td></tr>
</tbody>
</table>
</div>
<div class="p-4">
<h4>Analysis of Results</h4>
<table class="table">
<tbody>
<tr><td class="left">Unified Results</td>
<td>
<dl>
{% for result in survey["results and analysis"]["analysis of results"]["unified results"] %}
<dt>Category</dt><dd>{%assign values = result['category'] | compact %}{%include table-content.html%}</dd>
<dt>Measure Category</dt><dd>{%assign values = result['measure category'] | compact %}{%include table-content.html%}</dd>
<dt>Unified Result</dt><dd>{%assign values = result['unified result'] | compact %}{%include table-content.html%}</dd>
{%if result != survey["results and analysis"]["analysis of results"]["unified results"].last %}<hr/>{%endif%}
{% endfor %}
</dl>
</td>
</tr>
<tr><td class="left">Proven Claims</td>
<td>
<dl>
{% for result in survey["results and analysis"]["analysis of results"]["proven claims"] %}
<dt>Category</dt><dd>{%assign values = result['category'] | compact %}{%include table-content.html%}</dd>
<dt>Claim</dt><dd>{%assign values = result['claim'] | compact %}{%include table-content.html%}</dd>
{%if result != survey["results and analysis"]["analysis of results"]["proven claims"].last %}<hr/>{%endif%}
{% endfor %}
</dl>
</td>
</tr>
<tr><td class="left">Interpreted Results</td>
<td>
<dl>
{% for result in survey["results and analysis"]["analysis of results"]["interpreted results"] %}
<dt>Category</dt><dd>{%assign values = result['category'] | compact %}{%include table-content.html%}</dd>
<dt>Interpreted Result</dt><dd>{%assign values = result['interpreted result'] | compact %}{%include table-content.html%}</dd>
{%if result != survey["results and analysis"]["analysis of results"]["interpreted results"].last %}<hr/>{%endif%}
{% endfor %}
</dl>
</td>
</tr>
</tbody>
</table>
</div>
<div class="p-4">
<h4>Analysis of Tasks</h4>
<table class="table">
<tbody>
<tr><td class="left">Tasks</td>
<td>
<dl>
{% for task in survey["results and analysis"]["analysis of tasks"] %}
<dt>Task ID</dt><dd>{%assign values = task['task id'] | compact %}{%include table-content.html%}</dd>
<dt>Task Types</dt><dd>{%assign values = task['task types'] | compact %}{%include table-content.html%}</dd>
{%if task != survey["results and analysis"]["analysis of tasks"].last %}<hr/>{%endif%}
{% endfor %}
</dl>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
{% endfor %}
</div>
</div>
</div>
<!-- jQuery CDN - Slim version (=without AJAX) -->
<script crossorigin="anonymous" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" src="https://cdn.jsdelivr.net/npm/[email protected]/dist/jquery.min.js"></script>
<!-- Popper.JS -->
<script crossorigin="anonymous" integrity="sha384-cs/chFZiN24E4KMATLdqdvsezGxaGsi4hLGOzlXwp5UZB1LY//20VyM2taTB4QvJ" src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.0/umd/popper.min.js"></script>
<!-- Bootstrap JS -->
<script crossorigin="anonymous" integrity="sha384-ho+j7jyWK8fNQe+A12Hb8AhRq26LrZ/JpcUGGOn+Y7RsweNrtN/tE3MoK7ZeZDyx" src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
<!-- jQuery Custom Scroller CDN -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/malihu-custom-scrollbar-plugin/3.1.5/jquery.mCustomScrollbar.concat.min.js"></script>
</body>
</html>