-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstatistical_test.py
More file actions
220 lines (169 loc) · 5.99 KB
/
statistical_test.py
File metadata and controls
220 lines (169 loc) · 5.99 KB
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
import os
import numpy as np
import pandas as pd
import matplotlib
import matplotlib.pyplot as plt
import math
def graph_ranks(avranks, names, cd=None, cdmethod=None, lowv=None, highv=None,
width=6, textspace=1, reverse=False, filename=None, **kwargs):
try:
import matplotlib.pyplot as plt
from matplotlib.backends.backend_agg import FigureCanvasAgg
except ImportError:
raise ImportError("Function graph_ranks requires matplotlib.")
width = float(width)
textspace = float(textspace)
def nth(l, n):
n = lloc(l, n)
return [a[n] for a in l]
def lloc(l, n):
if n < 0:
return len(l[0]) + n
else:
return n
def mxrange(lr):
if not len(lr):
yield ()
else:
# it can work with single numbers
index = lr[0]
if isinstance(index, int):
index = [index]
for a in range(*index):
for b in mxrange(lr[1:]):
yield tuple([a] + list(b))
def print_figure(fig, *args, **kwargs):
canvas = FigureCanvasAgg(fig)
canvas.print_figure(*args, **kwargs)
sums = avranks
tempsort = sorted([(a, i) for i, a in enumerate(sums)], reverse=reverse)
ssums = nth(tempsort, 0)
sortidx = nth(tempsort, 1)
nnames = [names[x] for x in sortidx]
if lowv is None:
lowv = min(1, int(math.floor(min(ssums))))
if highv is None:
highv = max(len(avranks), int(math.ceil(max(ssums))))
cline = 0.4
k = len(sums)
lines = None
linesblank = 0
scalewidth = width - 2 * textspace
def rankpos(rank):
if not reverse:
a = rank - lowv
else:
a = highv - rank
return textspace + scalewidth / (highv - lowv) * a
distanceh = 0.25
if cd and cdmethod is None:
# get pairs of non significant methods
def get_lines(sums, hsd):
# get all pairs
lsums = len(sums)
allpairs = [(i, j) for i, j in mxrange([[lsums], [lsums]]) if j > i]
# remove not significant
notSig = [(i, j) for i, j in allpairs
if abs(sums[i] - sums[j]) <= hsd]
# keep only longest
def no_longer(ij_tuple, notSig):
i, j = ij_tuple
for i1, j1 in notSig:
if (i1 <= i and j1 > j) or (i1 < i and j1 >= j):
return False
return True
longest = [(i, j) for i, j in notSig if no_longer((i, j), notSig)]
return longest
lines = get_lines(ssums, cd)
linesblank = 0.2 + 0.2 + (len(lines) - 1) * 0.1
# add scale
distanceh = 0.25
cline += distanceh
# calculate height needed height of an image
minnotsignificant = max(2 * 0.2, linesblank)
height = cline + ((k + 1) / 2) * 0.2 + minnotsignificant
fig = plt.figure(figsize=(width, height))
fig.set_facecolor('white')
ax = fig.add_axes([0, 0, 1, 1]) # reverse y axis
ax.set_axis_off()
hf = 1. / height # height factor
wf = 1. / width
def hfl(l):
return [a * hf for a in l]
def wfl(l):
return [a * wf for a in l]
# Upper left corner is (0,0).
ax.plot([0, 1], [0, 1], c="w")
ax.set_xlim(0, 1)
ax.set_ylim(1, 0)
def line(l, color='k', **kwargs):
"""
Input is a list of pairs of points.
"""
ax.plot(wfl(nth(l, 0)), hfl(nth(l, 1)), color=color, **kwargs)
def text(x, y, s, *args, **kwargs):
ax.text(wf * x, hf * y, s, size=18, *args, **kwargs)
line([(textspace, cline), (width - textspace, cline)], linewidth=1.7)
bigtick = 0.1
smalltick = 0.05
tick = None
for a in list(np.arange(lowv, highv, 0.5)) + [highv]:
tick = smalltick
if a == int(a):
tick = bigtick
line([(rankpos(a), cline - tick / 2),
(rankpos(a), cline)],
linewidth=1.7)
for a in range(lowv, highv + 1):
text(rankpos(a), cline - tick / 2 - 0.05, str(a),
ha="center", va="bottom")
k = len(ssums)
a = 0.6
b = a + 0.2
for i in range(math.ceil(k / 2)):
chei = cline + minnotsignificant + i * 0.24
line([(rankpos(ssums[i]), cline),
(rankpos(ssums[i]), chei),
(textspace + b, chei)],
linewidth=1.7)
if rankpos(ssums[i]) < 1.1:
text(textspace +4.2*a, chei, nnames[i], ha="right", va="center")
else:
text(textspace + a, chei, nnames[i], ha="right", va="center")
for i in range(math.ceil(k / 2), k):
chei = cline + minnotsignificant + (k - i - 1) * 0.24
line([(rankpos(ssums[i]), cline),
(rankpos(ssums[i]), chei),
(textspace + scalewidth - b, chei)],
linewidth=1.7)
text(textspace + scalewidth - a, chei, nnames[i],
ha="left", va="center")
if cd and cdmethod is None:
# upper scale
if not reverse:
begin, end = rankpos(lowv), rankpos(lowv + cd)
else:
begin, end = rankpos(highv), rankpos(highv - cd)
# no-significance lines
def draw_lines(lines, side=0.05, height=0.1):
start = cline + 0.2
for l, r in lines:
line([(rankpos(ssums[l]) - side, start),
(rankpos(ssums[r]) + side, start)],
linewidth=2.5)
start += height
draw_lines(lines)
elif cd:
begin = rankpos(avranks[cdmethod] - cd)
end = rankpos(avranks[cdmethod] + cd)
line([(begin, cline), (end, cline)],
linewidth=2.5)
line([(begin, cline + bigtick / 2),
(begin, cline - bigtick / 2)],
linewidth=2.5)
line([(end, cline + bigtick / 2),
(end, cline - bigtick / 2)],
linewidth=2.5)
if filename:
print_figure(fig, filename, **kwargs)
return fig