-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpdt_data_graph.py
executable file
·249 lines (235 loc) · 10.6 KB
/
pdt_data_graph.py
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
import json
import matplotlib.pyplot as pyplot
def filter_data(input_data):
counter = 0
phidelt = []
fbgoogl = []
biedenh = []
for b in input_data:
b = json.loads(b)
temp_sum = 0
for i in range(len(b)):
temp_sum += b[i]["code"]
if temp_sum == 961:
phidelt.append(b)
elif temp_sum == 1015:
fbgoogl.append(b)
elif temp_sum == 720:
biedenh.append(b)
return [phidelt, fbgoogl, biedenh]
import numpy as np
def getMedianTiming(timings):
elements = len(timings)
n = len(timings[0])
out = np.zeros(n)
for data in timings:
out += np.array(data)
out /= elements
return out.tolist()
def graph_data(input_data, prefix, boxplots=True, lineplots=True, meanplot=True):
counter = 0
for person in input_data:
attempts = []
for b in person:
x = []
for i in range(len(b)):
x.append(b[i].get(u'down', 0))
if (lineplots):
pyplot.plot(x, ['b','g','r','c','m','y','k','DarkOrange','CornflowerBlue','Crimson','DarkMagenta', 'DarkOliveGreen'][counter])
attempts.append(x[:])
if (meanplot):
pyplot.plot(getMedianTiming(attempts), ['b','g','r','c','m','y','k','DarkOrange','CornflowerBlue','Crimson','DarkMagenta', 'DarkOliveGreen'][counter])
if (boxplots):
errors = zip(*attempts)
r = pyplot.boxplot(errors[1:])
pyplot.setp(r['boxes'], color=['b','g','r','c','m','y','k','DarkOrange','CornflowerBlue','Crimson','DarkMagenta', 'DarkOliveGreen'][counter])
pyplot.setp(r['whiskers'], color=['b','g','r','c','m','y','k','DarkOrange','CornflowerBlue','Crimson','DarkMagenta', 'DarkOliveGreen'][counter])
pyplot.setp(r['fliers'], color=['b','g','r','c','m','y','k','DarkOrange','CornflowerBlue','Crimson','DarkMagenta', 'DarkOliveGreen'][counter])
counter += 1
pyplot.xlabel("Keystroke Events")
pyplot.ylabel("Milliseconds")
pyplot.savefig(prefix + '_down.png')
pyplot.clf()
counter = 0
for person in input_data:
attempts = []
for b in person:
x = []
for i in range(len(b)):
x.append(b[i].get(u'up', 0))
if (lineplots):
pyplot.plot(x, ['b','g','r','c','m','y','k','DarkOrange','CornflowerBlue','Crimson','DarkMagenta', 'DarkOliveGreen'][counter])
attempts.append(x[:])
if (meanplot):
pyplot.plot(getMedianTiming(attempts), ['b','g','r','c','m','y','k','DarkOrange','CornflowerBlue','Crimson','DarkMagenta', 'DarkOliveGreen'][counter])
if (boxplots):
errors = zip(*attempts)
r = pyplot.boxplot(errors[1:])
pyplot.setp(r['boxes'], color=['b','g','r','c','m','y','k','DarkOrange','CornflowerBlue','Crimson','DarkMagenta', 'DarkOliveGreen'][counter])
pyplot.setp(r['whiskers'], color=['b','g','r','c','m','y','k','DarkOrange','CornflowerBlue','Crimson','DarkMagenta', 'DarkOliveGreen'][counter])
pyplot.setp(r['fliers'], color=['b','g','r','c','m','y','k','DarkOrange','CornflowerBlue','Crimson','DarkMagenta', 'DarkOliveGreen'][counter])
counter += 1
pyplot.xlabel("Keystroke Events")
pyplot.ylabel("Milliseconds")
pyplot.savefig(prefix + '_up.png')
pyplot.clf()
counter = 0
for person in input_data:
attempts = []
for b in person:
x = []
for i in range(len(b)-1):
x.append(b[i+1][u'down']-b[i][u'down'])
if (lineplots):
pyplot.plot(x, ['b','g','r','c','m','y','k','DarkOrange','CornflowerBlue','Crimson','DarkMagenta', 'DarkOliveGreen'][counter])
attempts.append(x[:])
if (meanplot):
pyplot.plot(getMedianTiming(attempts), ['b','g','r','c','m','y','k','DarkOrange','CornflowerBlue','Crimson','DarkMagenta', 'DarkOliveGreen'][counter])
if (boxplots):
errors = zip(*attempts)
r = pyplot.boxplot(errors[1:])
pyplot.setp(r['boxes'], color=['b','g','r','c','m','y','k','DarkOrange','CornflowerBlue','Crimson','DarkMagenta', 'DarkOliveGreen'][counter])
pyplot.setp(r['whiskers'], color=['b','g','r','c','m','y','k','DarkOrange','CornflowerBlue','Crimson','DarkMagenta', 'DarkOliveGreen'][counter])
pyplot.setp(r['fliers'], color=['b','g','r','c','m','y','k','DarkOrange','CornflowerBlue','Crimson','DarkMagenta', 'DarkOliveGreen'][counter])
counter += 1
pyplot.xlabel("Keystroke Events")
pyplot.ylabel("Milliseconds")
pyplot.savefig(prefix + '_down-down.png')
pyplot.clf()
counter = 0
for person in input_data:
attempts = []
for b in person:
x = []
for i in range(len(b)-1):
x.append(b[i+1].get(u'up', 0)-b[i].get(u'up', 0))
if (lineplots):
pyplot.plot(x, ['b','g','r','c','m','y','k','DarkOrange','CornflowerBlue','Crimson','DarkMagenta', 'DarkOliveGreen'][counter])
attempts.append(x[:])
if (meanplot):
pyplot.plot(getMedianTiming(attempts), ['b','g','r','c','m','y','k','DarkOrange','CornflowerBlue','Crimson','DarkMagenta', 'DarkOliveGreen'][counter])
if (boxplots):
errors = zip(*attempts)
r = pyplot.boxplot(errors[1:])
pyplot.setp(r['boxes'], color=['b','g','r','c','m','y','k','DarkOrange','CornflowerBlue','Crimson','DarkMagenta', 'DarkOliveGreen'][counter])
pyplot.setp(r['whiskers'], color=['b','g','r','c','m','y','k','DarkOrange','CornflowerBlue','Crimson','DarkMagenta', 'DarkOliveGreen'][counter])
pyplot.setp(r['fliers'], color=['b','g','r','c','m','y','k','DarkOrange','CornflowerBlue','Crimson','DarkMagenta', 'DarkOliveGreen'][counter])
counter += 1
pyplot.xlabel("Keystroke Events")
pyplot.ylabel("Milliseconds")
pyplot.savefig(prefix + '_up-up.png')
pyplot.clf()
counter = 0
for person in input_data:
attempts = []
for b in person:
x = []
for i in range(len(b)):
x.append(b[i].get(u'up',0) - b[i].get(u'down',0))
if (lineplots):
pyplot.plot(x, ['b','g','r','c','m','y','k','DarkOrange','CornflowerBlue','Crimson','DarkMagenta', 'DarkOliveGreen'][counter])
attempts.append(x[:])
if (meanplot):
pyplot.plot(getMedianTiming(attempts), ['b','g','r','c','m','y','k','DarkOrange','CornflowerBlue','Crimson','DarkMagenta', 'DarkOliveGreen'][counter])
if (boxplots):
errors = zip(*attempts)
r = pyplot.boxplot(errors[1:])
pyplot.setp(r['boxes'], color=['b','g','r','c','m','y','k','DarkOrange','CornflowerBlue','Crimson','DarkMagenta', 'DarkOliveGreen'][counter])
pyplot.setp(r['whiskers'], color=['b','g','r','c','m','y','k','DarkOrange','CornflowerBlue','Crimson','DarkMagenta', 'DarkOliveGreen'][counter])
pyplot.setp(r['fliers'], color=['b','g','r','c','m','y','k','DarkOrange','CornflowerBlue','Crimson','DarkMagenta', 'DarkOliveGreen'][counter])
counter += 1
pyplot.xlabel("Keystroke Events")
pyplot.ylabel("Milliseconds")
pyplot.savefig(prefix + '_dwell.png')
pyplot.clf()
counter = 0
for person in input_data:
attempts = []
for b in person:
x = []
for i in range(len(b)-1):
x.append(b[i+1].get(u'down',0) - b[i].get(u'up',0))
if (lineplots):
pyplot.plot(x, ['b','g','r','c','m','y','k','DarkOrange','CornflowerBlue','Crimson','DarkMagenta', 'DarkOliveGreen'][counter])
attempts.append(x[:])
if (meanplot):
pyplot.plot(getMedianTiming(attempts), ['b','g','r','c','m','y','k','DarkOrange','CornflowerBlue','Crimson','DarkMagenta', 'DarkOliveGreen'][counter])
if (boxplots):
errors = zip(*attempts)
r = pyplot.boxplot(errors[1:])
pyplot.setp(r['boxes'], color=['b','g','r','c','m','y','k','DarkOrange','CornflowerBlue','Crimson','DarkMagenta', 'DarkOliveGreen'][counter])
pyplot.setp(r['whiskers'], color=['b','g','r','c','m','y','k','DarkOrange','CornflowerBlue','Crimson','DarkMagenta', 'DarkOliveGreen'][counter])
pyplot.setp(r['fliers'], color=['b','g','r','c','m','y','k','DarkOrange','CornflowerBlue','Crimson','DarkMagenta', 'DarkOliveGreen'][counter])
counter += 1
pyplot.xlabel("Keystroke Events")
pyplot.ylabel("Milliseconds")
pyplot.savefig(prefix + '_flight.png')
pyplot.clf()
##### ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### #####
# This is a selection of people that had to type three phrases 5-10 times.
# The phrases are:
# phideltatheta
# facebookgoogle
# biedenharn
# The phrases were chosen because one is common for a small group of people to
# type, one is common for many people to type, and one is common for only a few
# people to type.
from more_data import *
people = [cavin,evan,peter,joe,luis,matt,tuan, carlo, juan, jordan]
#filtered_people = zip(*map(filter_data, people))
#graph_data(filtered_people[0], "phideltatheta")
#graph_data(filtered_people[1], "facebookgoogle")
#graph_data(filtered_people[2], "biedenharn")
people = [carlo, cavin]
filtered_people = zip(*map(filter_data, people))
#graph_data(filtered_people[0], "phideltatheta_cavin2")
#graph_data(filtered_people[1], "facebookgoogle_cavin2")
graph_data(filtered_people[2], "biedenharn_cavin", True, False)
#people = [carlo, evan]
#filtered_people = zip(*map(filter_data, people))
#graph_data(filtered_people[0], "phideltatheta_evan")
#graph_data(filtered_people[1], "facebookgoogle_evan")
#graph_data(filtered_people[2], "biedenharn_evan")
#
#people = [carlo, peter]
#filtered_people = zip(*map(filter_data, people))
#graph_data(filtered_people[0], "phideltatheta_peter")
#graph_data(filtered_people[1], "facebookgoogle_peter")
#graph_data(filtered_people[2], "biedenharn_peter")
#
#people = [carlo, joe]
#filtered_people = zip(*map(filter_data, people))
#graph_data(filtered_people[0], "phideltatheta_joe")
#graph_data(filtered_people[1], "facebookgoogle_joe")
#graph_data(filtered_people[2], "biedenharn_joe")
#
#people = [carlo, luis]
#filtered_people = zip(*map(filter_data, people))
#graph_data(filtered_people[0], "phideltatheta_luis")
#graph_data(filtered_people[1], "facebookgoogle_luis")
#graph_data(filtered_people[2], "biedenharn_luis")
#
#people = [carlo, matt]
#filtered_people = zip(*map(filter_data, people))
#graph_data(filtered_people[0], "phideltatheta_matt")
#graph_data(filtered_people[1], "facebookgoogle_matt")
#graph_data(filtered_people[2], "biedenharn_matt")
#
#people = [carlo, tuan]
#filtered_people = zip(*map(filter_data, people))
#graph_data(filtered_people[0], "phideltatheta_tuan")
#graph_data(filtered_people[1], "facebookgoogle_tuan")
#graph_data(filtered_people[2], "biedenharn_tuan")
#
#people = [carlo, juan]
#filtered_people = zip(*map(filter_data, people))
#graph_data(filtered_people[0], "phideltatheta_juan")
#graph_data(filtered_people[1], "facebookgoogle_juan")
#graph_data(filtered_people[2], "biedenharn_juan")
#
#people = [carlo, jordan]
#filtered_people = zip(*map(filter_data, people))
#graph_data(filtered_people[0], "phideltatheta_jordan")
#graph_data(filtered_people[1], "facebookgoogle_jordan")
#graph_data(filtered_people[2], "biedenharn_jordan")
##### ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### #####