-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsurvey.html
273 lines (257 loc) · 9.2 KB
/
survey.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
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
<!DOCTYPE HTML>
<!--
Spectral by HTML5 UP
html5up.net | @ajlkn
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
-->
<html>
<head>
<title>Systems Engineering HCI</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<!--[if lte IE 8]><script src="assets/js/ie/html5shiv.js"></script><![endif]-->
<link rel="stylesheet" href="assets/css/main.css" />
<!--[if lte IE 8]><link rel="stylesheet" href="assets/css/ie8.css" /><![endif]-->
<!--[if lte IE 9]><link rel="stylesheet" href="assets/css/ie9.css" /><![endif]-->
</head>
<body>
<!-- Page Wrapper -->
<div id="page-wrapper">
<!-- Header -->
<header id="header">
<h1><a href="index.html">Systems Engineering HCI</a></h1>
<nav id="nav">
<ul>
<li class="special">
<a href="#menu" class="menuToggle"><span>Menu</span></a>
<div id="menu">
<ul>
<li><a href="index.html">Overview</a></li>
<li><a href="survey.html">User Survey</a></li>
<li><a href="requirements.html">Requirements</a></li>
<li><a href="persona1.html">Persona 1</a></li>
<li><a href="persona2.html">Persona 2</a></li>
<li><a href="scenario.html">Scenario</a></li>
<li><a href="storyboard.html">Storyboard</a></li>
<li><a href="iteration.html">Iteration</a></li>
<li><a href="sketches.html">Sketches</a></li>
<li><a href="alternatives.html">Alternatives</a></li>
<li><a href="interaction.html">User Interaction 1</a></li>
<li><a href="interaction2.html">User Interaction 2</a></li>
<li><a href="evaluation.html">Evaluation</a></li>
<li><a href="architectures.html">System Architecture</a></li>
<li><a href="citations.html">References</a></li>
</ul>
</div>
</li>
</ul>
</nav>
</header>
<!-- Main -->
<article id="main">
<header>
<h2>User Surveys</h2>
</header>
<section class="wrapper style5">
<div class="inner">
<section>
<h4>Gathering User Data</h4>
<p>Before our team started designing the prototypes for the Graphing tools and the Chatbot, we decided to conduct some research by asking some of our colleagues to answer some survey questions.
They were asked questions about User Interface and Chatbot features that they would like to see implemented. (the proportions on the charts are in percentages %)</p>
<hr />
<div class="chart-container" style="position: relative; height:60vh; width:100%; margin-bottom: 2%">
<canvas id="chart1" style="float: left;max-width: 50%; height: 100%;"></canvas>
<canvas id="chart2" style="float: right;max-width: 50%; height: 100%;"></canvas>
</div>
<div class="chart-container" style="position: relative; height:60vh; width:100%; margin-bottom: 2%">
<canvas id="chart3" style="float: left;max-width: 50%; height: 100%;"></canvas>
<canvas id="chart4" style="float: left;max-width: 50%; height: 100%;"></canvas>
</div>
<div class="chart-container" style="position: relative; height:60vh; width:100%; margin-bottom: 2%">
<canvas id="chart5" style="float: left;max-width: 50%; height: 100%;"></canvas>
<canvas id="chart6" style="float: left;max-width: 50%; height: 100%;"></canvas>
</div>
</section>
</div>
</section>
</article>
</div>
<!-- Scripts -->
<script src="assets/js/jquery.min.js"></script>
<script src="assets/js/jquery.scrollex.min.js"></script>
<script src="assets/js/jquery.scrolly.min.js"></script>
<script src="assets/js/skel.min.js"></script>
<script src="assets/js/util.js"></script>
<!--[if lte IE 8]><script src="assets/js/ie/respond.min.js"></script><![endif]-->
<script src="assets/js/main.js"></script>
<script src="Chart.js/dist/Chart.js"></script>
<script src="Chart.js/samples/utils.js"></script>
</body>
<script>
var ctx1 = document.getElementById("chart1");
var chart1 = new Chart(ctx1, {
type: 'doughnut',
data: {
labels: ["Yes","No"],
datasets: [{
data: [71,29],
backgroundColor: [
window.chartColors.yellow,
window.chartColors.purple,
],
label: 'First Chart'
}],
labels: [
"Yes","No"
]
},
options: {
responsive: true,
title: {
display: true,
text: ['Would you choose a chatbot', 'over an e-mail or a FAQ page?'],
fontSize: 25,
padding: 20
}
}
});
var ctx2 = document.getElementById("chart2");
var chart2 = new Chart(ctx2, {
type: 'doughnut',
data: {
labels: ["Energy Generated in the Past","Energy past prices","Profit", "Bad performance cases"],
datasets: [{
data: [35,29,23,13],
backgroundColor: [
window.chartColors.grey,
window.chartColors.blue,
window.chartColors.red,
window.chartColors.purple
],
label: 'First Chart'
}],
labels: [
"Energy Generated in the Past","Energy past prices","Profit", "Bad performance cases"
]
},
options: {
responsive: true,
title: {
display: true,
text: ['As a solar plant owner, which feature', 'would you think is most important?'],
fontSize: 25,
padding: 20
}
}
});
var ctx3 = document.getElementById("chart3");
var chart3 = new Chart(ctx3, {
type: 'doughnut',
data: {
labels: ["Yes","No"],
datasets: [{
data: [89,11],
backgroundColor: [
window.chartColors.blue,
window.chartColors.red,
],
label: 'First Chart'
}],
labels: [
"Yes","No"
]
},
options: {
responsive: true,
title: {
display: true,
text: ['Do you think some User Interface', 'navigation tips would be useful?'],
fontSize: 25,
padding: 20
}
}
});
var ctx4 = document.getElementById("chart4");
var chart4 = new Chart(ctx4, {
type: 'doughnut',
data: {
labels: ["3-day prediction of the solar energy production","3-day prediction of the solar energy price","More detailed graphs and trends"],
datasets: [{
data: [41,32,27],
backgroundColor: [
window.chartColors.orange,
window.chartColors.blue,
window.chartColors.red,
],
label: 'First Chart'
}],
labels: [
"3-day prediction of the solar energy production","3-day prediction of the solar energy price","More detailed graphs and trends"
]
},
options: {
responsive: true,
title: {
display: true,
text: ['Which one of these would you like', 'to have most in Renewables.AI?'],
fontSize: 25,
padding: 20
}
}
});
var ctx5 = document.getElementById("chart5");
var chart5 = new Chart(ctx5, {
type: 'doughnut',
data: {
labels: ["Yes","No"],
datasets: [{
data: [59,41],
backgroundColor: [
window.chartColors.grey,
window.chartColors.purple,
],
label: 'First Chart'
}],
labels: [
"Yes","No"
]
},
options: {
responsive: true,
title: {
display: true,
text: ['Do you believe interacting with', 'a chatbot can be a time saver?'],
fontSize: 25,
padding: 20
}
}
});
var ctx6 = document.getElementById("chart6");
var chart6 = new Chart(ctx6, {
type: 'doughnut',
data: {
labels: ["Yes","No"],
datasets: [{
data: [61,39],
backgroundColor: [
window.chartColors.green,
window.chartColors.orange,
],
label: 'First Chart'
}],
labels: [
"Yes","No"
]
},
options: {
responsive: true,
title: {
display: true,
text: ['Did you know that a chatbot can be', 'faster, less invasive and cost effective?'],
fontSize: 25,
padding: 20
}
}
});
</script>
</html>