-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathalternatives.html
162 lines (156 loc) · 6.26 KB
/
alternatives.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
<!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>Prototyping Tools</h2>
</header>
<section class="wrapper style5">
<div class="inner">
<section>
<div class="table-wrapper">
<table>
<thead>
<tr>
<th>Prototype Tool</th>
<th>Pros</th>
<th>Cons</th>
</tr>
</thead>
<tbody>
<tr>
<td>PowerPoint Slideshow</td>
<td>
<ul>
<li>Easy to use</li>
<li>Can be created in a short amount time</li>
</ul>
</td>
<td>
<ul>
<li>Does not have complex graphs</li>
<li>Restricted to pre-defined steps</li>
</ul>
</td>
</tr>
<tr>
<td>Processing</td>
<td>
<ul>
<li>Can produce complex interactive graphs</li>
</ul>
</td>
<td>
<ul>
<li>Takes a long time to create prototypes</li>
</ul>
</td>
</tr>
<tr>
<td>D3.js</td>
<td>
<ul>
<li>Can produce complex graphs in web browser</li>
</ul>
</td>
<td>
<ul>
<li>Steep learning curve</li>
</ul>
</td>
</tr>
<tr>
<td>Chart.js</td>
<td>
<ul>
<li>Can produce complex graphs in web browser</li>
<li>Easy to learn</li>
<li>Can easily make changes</li>
</ul>
</td>
<td>
<ul>
<li>Takes reletively long to create prototype</li>
</ul>
</td>
</tr>
<tr>
<td>BotSociety</td>
<td>
<ul>
<li>ChatBot prototypes can be created quickly</li>
<li>Easy to create prototypes</li>
</ul>
</td>
<td>
<ul>
<li>Hard to make large changes</li>
</ul>
</td>
</tr>
</tbody>
</table>
</div>
We concluded that we were going to use Chart.js and BotSociety to create the prototype.
</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>
</body>
</html>