-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstat_tools.py
More file actions
387 lines (305 loc) · 10.8 KB
/
stat_tools.py
File metadata and controls
387 lines (305 loc) · 10.8 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
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
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
import math
import numpy
import scipy.stats
def transformToRange(X, new_min, new_max, old_min=None, old_max=None):
if old_min == None:
old_min = min(X)
if old_max == None:
old_max = max(X)
old_range = old_max - old_min
new_range = new_max - new_min
return [float(x - old_min) / old_range * new_range + new_min for x in X]
def fact(n):
if n == 0: return (1)
else: return reduce(lambda x,y: x*y, range(1,n+1))
def comb1(n,k):
prod = 1
for i in range(1,k+1):
prod = prod * (n - (k-i))/float(i)
return(prod)
def comb(n, k):
if k < 0 or k > n:
return 0
if k > n - k: # take advantage of symmetry
k = n - k
c = 1
for i in range(k):
c = c * (n - (k - (i+1)))
c = c // (i+1)
return c
def norm(x, mu,sigma):
"""Normal distribution"""
sigma = float(sigma)
return(1/(sigma*(math.sqrt(2*math.pi))) * math.exp( -0.5 * math.pow( (x-mu)/sigma,2)))
def binom(k,n,p):
"""Binomial distribution. Uses Normal approximation for large 'n' """
if n >= 100:
return(norm(k, n*p, math.sqrt(n*p*(1-p)) ) )
else:
return(comb(n,k) * math.pow(p, k) * math.pow(1-p, n-k))
def binom_cdf(k,n,p):
"""CDF of the binomial distribution"""
return(sum([binom(i,n,p) for i in range(0,k+1)]))
def binom_test(k,n,p, type="two-sided"):
"""Does a binomial test given success, trials and probability."""
if type == "less": return(binom_cdf(k,n,p))
elif type == "greater": return(1-binom_cdf(k-1,n,p))
else:
if p == 0: return(1) #return(k == 0)
elif p == 1: return(1) #return(k == n)
else:
relErr = 1 + 1e-7
d = binom(k,n,p)
m = n * p
if k == m: return(1)
elif (k < m):
ri = range(int(math.ceil(m)), n+1)
y = sum([1 for j in ri if binom(j,n,p) <= d*relErr])
return(binom_cdf(k,n,p) + (1-binom_cdf(int(n-y),n,p)))
else:
ri = range(0, int(math.floor(m)))
y = sum([1 for j in ri if binom(j,n,p) <= d*relErr])
return(binom_cdf(y-1,n,p) + (1-binom_cdf(k-1,n,p)))
def regress(X,Y):
"""Performs linear regression given two vectors, X, Y."""
N = len(X)
xbar = numpy.average(X)
ybar = numpy.average(Y)
xybar = numpy.average([X[i]*Y[i] for i in range(N)])
x2bar = numpy.average([X[i]*X[i] for i in range(N)])
B = (xybar - xbar*ybar)/(x2bar - xbar*xbar)
A0 = ybar - B*xbar
yfit = [ A0 + B *X[i] for i in range(N)]
yres = [Y[i] - (A0 + B *X[i]) for i in range(N)]
var = sum([math.pow(yres[i],2) for i in range(N) ])/(N-2)
std = math.sqrt(var)
return(B, A0, std)
def boxcoxtransform(x, lambdax):
"""
Performs a box-cox transformation to data vector X.
WARNING: elements of X should be all positive!
Fixed: '>' has changed to '<'
"""
if x <= 0:
raise ArgumentError, "Nonpositive value(s) in X vector"
if abs(lambdax) < 1.0e-5:
return(math.log(x))
else:
return((x**lambdax - 1.0)/lambdax)
#return math.log(x) if abs(lambdax) < 1.0e-5 else (x**lambdax - 1.0)/lambdax
def loglik(X, lambdax):
"""
Computes the log-likelihood function for a transformed vector Xtransform.
"""
n = len(X)
Xtrans = [boxcoxtransform(x, lambdax) for x in X]
meanX = sum(Xtrans) / float(n)
S2 = (lambdax - 1.0) * sum([math.log(x) for x in X])
S = sum([(x-meanX) **2 for x in Xtrans])
S1= (-n/2.0)*math.log(S/n)
return S2+S1
def boxcoxTable(X, minlambda, maxlambda, dellambda):
"""
Returns a table of (loglik function, lambda) pairs
for the data.
"""
# Create a table (lambda, loglik)
out = []
vallambda = minlambda
while vallambda <= maxlambda+1.0e-5:
llik = loglik(X, vallambda)
out.append((llik, vallambda))
vallambda += dellambda
return out
def phi_coefficient(X,Y):
"""Calculates the phi-coefficient for two bool arrays"""
N = len(X)
assert len(X) == len(Y), "Length of arrays must be equal"
x1y1 = sum([int(X[j]) == int(Y[j]) == 1 for j in range(N)])
x1y0 = sum([int(X[j]) == 1 and int(Y[j]) == 0 for j in range(N)])
x0y1 = sum([int(X[j]) == 0 and int(Y[j]) == 1 for j in range(N)])
x0y0 = sum([int(X[j]) == int(Y[j]) == 0 for j in range(N)])
x1 = x1y1 + x1y0
x0 = x0y1 + x0y0
y1 = x1y1 + x0y1
y0 = x1y0 + x0y0
phi_coeff = (x1y1*x0y0 - x1y0*x0y1)/math.sqrt(x1*x0*y1*y0)
return phi_coeff
def BH_fdr_correction(X):
"""Adjusts p-values using the Benjamini Hochberg procedure"""
n = len(X)
qvalues = numpy.zeros(n)
pvalues = numpy.array(X)
pvalues.sort()
pvalues = pvalues[::-1]
for i in xrange(n):
rank = n - i
qvalues[i] = n/float(rank) * pvalues[i]
for i in xrange(0, n-1):
if qvalues[i] < qvalues[i+1]:
qvalues[i+1] = qvalues[i]
p2qval = dict([(p,q) for (p,q) in zip(pvalues,qvalues)])
return numpy.array([p2qval[p] for p in X])
def bayesian_ess_thresholds(Z_raw, ALPHA=0.05):
"""Returns Essentiality Thresholds using a BH-like procedure"""
Z = numpy.sort(Z_raw)[::-1]
W = 1 - Z
N = len(Z)
ess_threshold = 1.00
INDEX = range(3, N+1)
count = 0
for i in INDEX:
count +=1
wi = 1 - Z[i-1]
ai_n = (ALPHA*i)/N
mean_wi = numpy.average(W[0:i-2])
delta_w = wi - mean_wi
#if count < 30: print i, wi, ai_n, delta_w
if delta_w > ai_n:
ess_threshold = Z[i-1]
#print "i", i
break
noness_threshold = 0.00
count = 0
INDEX = range(0, N+1)
INDEX.sort(reverse=True)
for i in INDEX:
wi = Z[N-i+1]
ai_n = (ALPHA*i)/N
mean_wi = numpy.average(Z[N-i+1:])
delta_w = Z[N-i+1] - mean_wi
count +=1
#print count
#if count < 20:
# print i, wi, ai_n, mean_wi, delta_w, N-i+1, N-1, W[N-i-1], W[i-1]
if ai_n > delta_w:
# print i, wi, ai_n, mean_wi, delta_w, N-i+1, N-1, W[N-i-1], W[i-1]
break
noness_threshold = Z[N-i]
return(ess_threshold, noness_threshold)
def F_mean_diff_flat(A, B):
return numpy.mean(B) - numpy.mean(A)
def F_sum_diff_flat(A, B):
return numpy.sum(B) - numpy.sum(A)
def F_shuffle_flat(X):
return numpy.random.permutation(X)
def resampling(data1, data2, S=10000, testFunc=F_mean_diff_flat,
permFunc=F_shuffle_flat, adaptive=False):
"""Does a permutation test on two sets of data.
Performs the resampling / permutation test given two sets of data using a
function defining the test statistic and a function defining how to permute
the data.
Args:
data1: List or numpy array with the first set of observations.
data2: List or numpy array with the second set of observations.
S: Number of permutation tests (or samples) to obtain.
testFunc: Function defining the desired test statistic. Should accept
two lists as arguments. Default is difference in means between
the observations.
permFunc: Function defining the way to permute the data. Should accept
one argument, the combined set of data. Default is random
shuffle.
adaptive: Cuts-off resampling early depending on significance.
Returns:
A tuple with the following entries::
test_obs -- Test statistic of observation.
mean1 -- Arithmetic mean of first set of data.
mean2 -- Arithmetic mean of second set of data.
log2FC -- Normalized log2FC the means.
pval_ltail -- Lower tail p-value.
pval_utail -- Upper tail p-value.
pval_2tail -- Two-tailed p-value.
"""
count_ltail = 0
count_utail = 0
count_2tail = 0
test_list = []
n1 = len(data1)
n2 = len(data2)
mean1 = 0
if n1 > 0:
mean1 = numpy.mean(data1)
mean2 = 0
if n2 > 0:
mean2 = numpy.mean(data2)
test_obs = testFunc(data1, data2)
try:
norm_mean1 = mean1/float(n1) if mean1 > 0.0 else 1.0
norm_mean2 = mean2/float(n2) if mean2 > 0.0 else 1.0
log2FC = math.log(norm_mean2/norm_mean1,2)
except:
log2FC = 0
perm = numpy.zeros(n1+n2)
perm[:n1] = data1
perm[n1:] = data2
s_performed = 0
for s in range(S):
if len(perm) >0:
perm = permFunc(perm)
test_sample = testFunc(perm[:n1], perm[n1:])
else:
test_sample = 0
test_list.append(test_sample)
if test_sample <= test_obs: count_ltail+=1
if test_sample >= test_obs: count_utail+=1
if abs(test_sample) >= abs(test_obs): count_2tail+=1
s_performed+=1
if adaptive:
if s_performed == round(S*0.01) or s_performed == round(S*0.1) or s_performed == round(S*1):
if count_2tail >= round(S*0.01*0.10):
break
pval_ltail = count_ltail/float(s_performed)
pval_utail = count_utail/float(s_performed)
pval_2tail = count_2tail/float(s_performed)
return (test_obs, mean1, mean2, log2FC, pval_ltail, pval_utail, pval_2tail, test_list)
#TEST-CASES
if __name__ == "__main__":
sdata = """
.15 .09 .18 .10 .05 .12 .08
.05 .08 .10 .07 .02 .01 .10
.10 .10 .02 .10 .01 .40 .10
.05 .03 .05 .15 .10 .15 .09
.08 .18 .10 .20 .11 .30 .02
.20 .20 .30 .30 .40 .30 .05
"""
X = [float(x) for x in sdata.split()]
out = boxcoxTable(X, -2, 2, 0.10)
out.sort()
print "Log likelihood function:"
for (llik, lambdax) in out:
print llik, lambdax
print "best lambda = ", out[-1][1]
print "with loglik function value = ",out[-1][0]
print ""
print ""
print "#########################################"
print "############ BINOM TEST #################"
print "#########################################"
print "DEFAULT"
n = 15
p = 0.5
for i in range(0,16):
print i, binom(i,n,p), binom_cdf(i,n,p)
print ""
print "LESS"
for i in range(0,16):
print i, binom_test(i,n,p,"less")
print ""
print "GREATER"
for i in range(0,16):
print i, binom_test(i,n,p,"greater")
print ""
print "TWO-SIDED"
for i in range(0,16):
print i, binom_test(i,n,p,"two-sided")
print ""
print ""
print "#########################################"
print "############ RESAMPLING #################"
print "#########################################"
data1 = scipy.stats.norm.rvs(100,10, size=100)
data2 = scipy.stats.norm.rvs(105,10, size=100)
(test_obs, mean1, mean2, log2FC, pval_ltail, pval_utail, pval_2tail) = resampling(data1, data2, S=10000)
print "Data1:", data1
print "Data2:", data2
print "Results:", (test_obs, mean1, mean2, log2FC, pval_ltail, pval_utail, pval_2tail)