-
Notifications
You must be signed in to change notification settings - Fork 0
/
CfIndex.py
75 lines (62 loc) · 2.85 KB
/
CfIndex.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
from collections import Counter
from utils import configFilePath, responseFileReadingDecorator
import numpy as np
import scipy.stats as stats
@responseFileReadingDecorator
def CfIndex(li):
def elementPlacing(li):
dic = {}
for order, element in enumerate(li):
dic.setdefault(element, []).append(order)
return dic
def intervalCalc(dic):
interval = [i - j for alternative in dic for i in dic[alternative] for j in dic[alternative] if i > j]
return interval
def countInstances(lis):
return Counter(lis)
def sumOccurencesAndDevideByLength(countdict, le):
return sum(countdict.values()) / le
def divideByMaxCfIndex(sumOccurencesAndDevideByLength, le):
return sumOccurencesAndDevideByLength / ((le - 1)/2)
# return sumOccurencesAndDevideByLength(countInstances(intervalCalc(elementPlacing(li))),len(li))
return divideByMaxCfIndex(sumOccurencesAndDevideByLength(countInstances(intervalCalc(elementPlacing(li))),len(li)),len(li))
if __name__ == "__main__":
participantNumber = 20
numOrAct = "a"
slowOrFast = "f"
totalParticipant = 24
txtFileFolder = configFilePath("FOLDER", "responseFileFolder")
# print(CfIndex(participantNumber = participantNumber,
# numOrAct = numOrAct,
# slowOrFast = slowOrFast,
# totalParticipant = totalParticipant,
# txtFileFolder = txtFileFolder))
s = []
for participantNumber in range(1, 1 + totalParticipant):
# print(CfIndex(participantNumber = participantNumber,
# numOrAct = numOrAct,
# slowOrFast = slowOrFast,
# totalParticipant = totalParticipant,
# txtFileFolder = txtFileFolder))
s.append(CfIndex(participantNumber = participantNumber,
numOrAct = numOrAct,
slowOrFast = "s",
totalParticipant = totalParticipant,
txtFileFolder = txtFileFolder))
f = []
for participantNumber in range(1, 1 + totalParticipant):
# print(CfIndex(participantNumber = participantNumber,
# numOrAct = numOrAct,
# slowOrFast = slowOrFast,
# totalParticipant = totalParticipant,
# txtFileFolder = txtFileFolder))
f.append(CfIndex(participantNumber = participantNumber,
numOrAct = numOrAct,
slowOrFast = "f",
totalParticipant = totalParticipant,
txtFileFolder = txtFileFolder))
# li = [1,4,2,1,0,5,1,2,7,6]
# print(CfIndex(li))
res = stats.wilcoxon(np.array(s), np.array(f))
print(s, f)
print(res)