-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdataAnalysis.py
44 lines (38 loc) · 963 Bytes
/
dataAnalysis.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
import json
from numpy import *
def main():
jsonFile = 'Experiments/TCP/result.json'
with open(jsonFile, 'r', encoding='utf-8') as f_read:
data = json.load(f_read)
data = list(data.values())
mq = []
eq = []
tests = []
states = []
learningTime = []
passingRate = []
correct = 0
for i in data:
mq.append(i['mqNum'])
eq.append(i['eqNum'])
tests.append(i['testNum'])
states.append(len(i['Model']['states']) - 1)
learningTime.append(i['learningTime'])
passingRate.append(i['passingRate'])
if i['correct']:
correct += 1
print(min(mq))
print(max(mq))
print(mean(mq))
print(min(eq))
print(max(eq))
print(mean(eq))
print(min(tests))
print(max(tests))
print(mean(tests))
print(mean(states))
print(correct)
print(mean(learningTime))
print(mean(passingRate))
if __name__ == '__main__':
main()