Multiple regression

Multiple regression designs apply to at least two scenarios.

  • Analyzing a single subject’s data when trials are associated with one or multiple continuous variables.

  • Analyzing group data when subjects are associated with one or multiple individual difference variables.

Here the analysis is illustrated for a simulated dataset from a single subject. Group analysis works analogously, except that each case in the datatset would represent a different subject rather than a different trial.

For such group analysis, it is necessary to reduce each subject’s data to a single case first because multiple regression assumes a fixed effects model. Such designs are described under Two-stage test.

Simulated data

# sphinx_gallery_thumbnail_number = 2
from eelbrain import *


data = datasets.simulate_erp(snr=0.5)
data.head()
cloze predictability n_chars
0.026139 low 4
0.99529 high 5
0.93062 high 3
0.82404 high 7
0.17041 low 4
0.18508 low 4
0.23345 low 4
0.80784 high 3
0.24979 low 7
0.26753 low 4
NDVars: eeg


The data represents 80 trials from a simulated word reading paradigm, where each word is associated with a word length (n_chars) and predictability (cloze).

p = plot.Scatter('cloze', 'n_chars', data=data, h=3)
sensor lm

Plot the average of each level on n_chars to illustrate the linear increase of the response around 130 ms with n_char.

p = plot.TopoButterfly('eeg', 'n_chars', data=data, t=.130, axh=2, w=6)
sensor lm

Multiple regression

Fit a multiple regression model. Estimate $p$-values using a cluster-based permuatation test, using a cluster-forming threshold of uncorrected $p$=.05 and 10,000 permutations (the default).

lm = testnd.LM('eeg', 'n_chars + cloze', data=data, tstart=0.050, tstop=0.500, pmin=0.05)
Permutation test:   0%|          | 0/10000 [00:00<?, ? permutations/s]
Permutation test:   0%|          | 9/10000 [00:00<02:02, 81.73 permutations/s]
Permutation test:   0%|          | 19/10000 [00:00<01:52, 88.74 permutations/s]
Permutation test:   0%|          | 33/10000 [00:00<01:34, 105.13 permutations/s]
Permutation test:   0%|          | 44/10000 [00:00<01:40, 99.56 permutations/s]
Permutation test:   1%|          | 55/10000 [00:00<01:43, 95.64 permutations/s]
Permutation test:   1%|          | 65/10000 [00:00<02:05, 79.44 permutations/s]
Permutation test:   1%|          | 79/10000 [00:00<01:44, 95.34 permutations/s]
Permutation test:   1%|          | 90/10000 [00:00<01:45, 93.50 permutations/s]
Permutation test:   1%|          | 100/10000 [00:01<02:01, 81.55 permutations/s]
Permutation test:   1%|          | 109/10000 [00:01<02:10, 75.72 permutations/s]
Permutation test:   1%|          | 124/10000 [00:01<01:48, 91.08 permutations/s]
Permutation test:   1%|▏         | 135/10000 [00:01<01:45, 93.51 permutations/s]
Permutation test:   1%|▏         | 145/10000 [00:01<01:47, 91.73 permutations/s]
Permutation test:   2%|▏         | 155/10000 [00:01<01:54, 85.87 permutations/s]
Permutation test:   2%|▏         | 164/10000 [00:01<02:12, 74.14 permutations/s]
Permutation test:   2%|▏         | 174/10000 [00:02<02:06, 77.96 permutations/s]
Permutation test:   2%|▏         | 184/10000 [00:02<02:02, 80.43 permutations/s]
Permutation test:   2%|▏         | 193/10000 [00:02<02:11, 74.45 permutations/s]
Permutation test:   2%|▏         | 201/10000 [00:02<02:28, 65.96 permutations/s]
Permutation test:   2%|▏         | 212/10000 [00:02<02:10, 74.84 permutations/s]
Permutation test:   2%|▏         | 220/10000 [00:02<02:19, 69.90 permutations/s]
Permutation test:   2%|▏         | 228/10000 [00:02<02:18, 70.32 permutations/s]
Permutation test:   2%|▏         | 238/10000 [00:02<02:07, 76.36 permutations/s]
Permutation test:   2%|▏         | 248/10000 [00:03<01:58, 82.38 permutations/s]
Permutation test:   3%|▎         | 259/10000 [00:03<01:49, 89.02 permutations/s]
Permutation test:   3%|▎         | 269/10000 [00:03<01:53, 85.40 permutations/s]
Permutation test:   3%|▎         | 278/10000 [00:03<01:55, 83.88 permutations/s]
Permutation test:   3%|▎         | 295/10000 [00:03<01:33, 103.77 permutations/s]
Permutation test:   3%|▎         | 307/10000 [00:03<01:34, 103.11 permutations/s]
Permutation test:   3%|▎         | 318/10000 [00:03<01:33, 103.50 permutations/s]
Permutation test:   3%|▎         | 329/10000 [00:03<01:39, 97.63 permutations/s]
Permutation test:   3%|▎         | 339/10000 [00:03<01:45, 91.99 permutations/s]
Permutation test:   3%|▎         | 349/10000 [00:04<01:50, 87.24 permutations/s]
Permutation test:   4%|▎         | 358/10000 [00:04<01:58, 81.29 permutations/s]
Permutation test:   4%|▎         | 367/10000 [00:04<02:03, 77.85 permutations/s]
Permutation test:   4%|▍         | 379/10000 [00:04<01:53, 85.12 permutations/s]
Permutation test:   4%|▍         | 391/10000 [00:04<01:45, 91.50 permutations/s]
Permutation test:   4%|▍         | 401/10000 [00:04<01:45, 90.73 permutations/s]
Permutation test:   4%|▍         | 413/10000 [00:04<01:39, 96.42 permutations/s]
Permutation test:   4%|▍         | 425/10000 [00:04<01:33, 102.80 permutations/s]
Permutation test:   4%|▍         | 436/10000 [00:04<01:34, 101.20 permutations/s]
Permutation test:   4%|▍         | 447/10000 [00:05<01:44, 91.43 permutations/s]
Permutation test:   5%|▍         | 457/10000 [00:05<01:44, 91.43 permutations/s]
Permutation test:   5%|▍         | 467/10000 [00:05<01:46, 89.62 permutations/s]
Permutation test:   5%|▍         | 477/10000 [00:05<01:56, 81.40 permutations/s]
Permutation test:   5%|▍         | 486/10000 [00:05<02:00, 79.28 permutations/s]
Permutation test:   5%|▍         | 498/10000 [00:05<01:52, 84.53 permutations/s]
Permutation test:   5%|▌         | 507/10000 [00:05<02:05, 75.82 permutations/s]
Permutation test:   5%|▌         | 515/10000 [00:06<02:04, 76.43 permutations/s]
Permutation test:   5%|▌         | 523/10000 [00:06<02:09, 73.07 permutations/s]
Permutation test:   5%|▌         | 531/10000 [00:06<02:07, 74.14 permutations/s]
Permutation test:   5%|▌         | 539/10000 [00:06<02:06, 74.94 permutations/s]
Permutation test:   6%|▌         | 552/10000 [00:06<01:55, 82.03 permutations/s]
Permutation test:   6%|▌         | 562/10000 [00:06<01:55, 81.56 permutations/s]
Permutation test:   6%|▌         | 578/10000 [00:06<01:34, 99.92 permutations/s]
Permutation test:   6%|▌         | 592/10000 [00:06<01:27, 107.19 permutations/s]
Permutation test:   6%|▌         | 604/10000 [00:06<01:32, 102.12 permutations/s]
Permutation test:   6%|▌         | 618/10000 [00:07<01:24, 110.63 permutations/s]
Permutation test:   6%|▋         | 630/10000 [00:07<01:37, 96.27 permutations/s]
Permutation test:   6%|▋         | 641/10000 [00:07<01:37, 96.37 permutations/s]
Permutation test:   7%|▋         | 651/10000 [00:07<01:39, 94.08 permutations/s]
Permutation test:   7%|▋         | 661/10000 [00:07<01:54, 81.82 permutations/s]
Permutation test:   7%|▋         | 670/10000 [00:07<01:54, 81.71 permutations/s]
Permutation test:   7%|▋         | 680/10000 [00:07<01:49, 85.16 permutations/s]
Permutation test:   7%|▋         | 689/10000 [00:07<01:54, 81.44 permutations/s]
Permutation test:   7%|▋         | 698/10000 [00:08<02:02, 75.78 permutations/s]
Permutation test:   7%|▋         | 710/10000 [00:08<01:47, 86.06 permutations/s]
Permutation test:   7%|▋         | 719/10000 [00:08<02:02, 75.96 permutations/s]
Permutation test:   7%|▋         | 732/10000 [00:08<01:56, 79.86 permutations/s]
Permutation test:   7%|▋         | 743/10000 [00:08<01:46, 87.08 permutations/s]
Permutation test:   8%|▊         | 757/10000 [00:08<01:34, 97.58 permutations/s]
Permutation test:   8%|▊         | 768/10000 [00:08<01:39, 92.98 permutations/s]
Permutation test:   8%|▊         | 778/10000 [00:08<01:41, 91.10 permutations/s]
Permutation test:   8%|▊         | 788/10000 [00:09<01:52, 81.64 permutations/s]
Permutation test:   8%|▊         | 797/10000 [00:09<01:54, 80.63 permutations/s]
Permutation test:   8%|▊         | 806/10000 [00:09<02:00, 76.55 permutations/s]
Permutation test:   8%|▊         | 819/10000 [00:09<01:52, 81.78 permutations/s]
Permutation test:   8%|▊         | 833/10000 [00:09<01:37, 94.32 permutations/s]
Permutation test:   8%|▊         | 843/10000 [00:09<01:36, 94.61 permutations/s]
Permutation test:   9%|▊         | 853/10000 [00:09<01:38, 93.12 permutations/s]
Permutation test:   9%|▊         | 864/10000 [00:09<01:41, 90.07 permutations/s]
Permutation test:   9%|▊         | 874/10000 [00:10<01:52, 81.43 permutations/s]
Permutation test:   9%|▉         | 888/10000 [00:10<01:35, 95.01 permutations/s]
Permutation test:   9%|▉         | 902/10000 [00:10<01:26, 105.51 permutations/s]
Permutation test:   9%|▉         | 913/10000 [00:10<01:32, 97.84 permutations/s]
Permutation test:   9%|▉         | 924/10000 [00:10<01:45, 86.40 permutations/s]
Permutation test:   9%|▉         | 934/10000 [00:10<01:43, 87.81 permutations/s]
Permutation test:   9%|▉         | 948/10000 [00:10<01:39, 90.85 permutations/s]
Permutation test:  10%|▉         | 960/10000 [00:10<01:34, 95.42 permutations/s]
Permutation test:  10%|▉         | 970/10000 [00:11<01:43, 87.57 permutations/s]
Permutation test:  10%|▉         | 982/10000 [00:11<01:39, 90.43 permutations/s]
Permutation test:  10%|▉         | 995/10000 [00:11<01:29, 100.23 permutations/s]
Permutation test:  10%|█         | 1006/10000 [00:11<01:29, 100.31 permutations/s]
Permutation test:  10%|█         | 1017/10000 [00:11<01:31, 97.76 permutations/s]
Permutation test:  10%|█         | 1027/10000 [00:11<01:32, 97.31 permutations/s]
Permutation test:  10%|█         | 1037/10000 [00:11<01:33, 95.95 permutations/s]
Permutation test:  11%|█         | 1052/10000 [00:11<01:24, 106.32 permutations/s]
Permutation test:  11%|█         | 1063/10000 [00:12<01:32, 96.61 permutations/s]
Permutation test:  11%|█         | 1073/10000 [00:12<01:37, 91.71 permutations/s]
Permutation test:  11%|█         | 1083/10000 [00:12<01:41, 87.53 permutations/s]
Permutation test:  11%|█         | 1092/10000 [00:12<01:49, 81.41 permutations/s]
Permutation test:  11%|█         | 1101/10000 [00:12<01:50, 80.46 permutations/s]
Permutation test:  11%|█         | 1116/10000 [00:12<01:30, 98.34 permutations/s]
Permutation test:  11%|█▏        | 1127/10000 [00:12<01:43, 85.77 permutations/s]
Permutation test:  11%|█▏        | 1137/10000 [00:12<01:40, 88.56 permutations/s]
Permutation test:  11%|█▏        | 1149/10000 [00:13<01:33, 94.60 permutations/s]
Permutation test:  12%|█▏        | 1159/10000 [00:13<01:40, 87.74 permutations/s]
Permutation test:  12%|█▏        | 1169/10000 [00:13<01:38, 90.00 permutations/s]
Permutation test:  12%|█▏        | 1179/10000 [00:13<01:46, 82.81 permutations/s]
Permutation test:  12%|█▏        | 1192/10000 [00:13<01:34, 92.95 permutations/s]
Permutation test:  12%|█▏        | 1202/10000 [00:13<01:34, 92.76 permutations/s]
Permutation test:  12%|█▏        | 1212/10000 [00:13<01:42, 85.46 permutations/s]
Permutation test:  12%|█▏        | 1222/10000 [00:13<01:40, 87.54 permutations/s]
Permutation test:  12%|█▏        | 1232/10000 [00:13<01:39, 88.03 permutations/s]
Permutation test:  12%|█▏        | 1245/10000 [00:14<01:39, 88.03 permutations/s]
Permutation test:  13%|█▎        | 1258/10000 [00:14<01:30, 96.58 permutations/s]
Permutation test:  13%|█▎        | 1268/10000 [00:14<01:41, 86.03 permutations/s]
Permutation test:  13%|█▎        | 1280/10000 [00:14<01:34, 92.41 permutations/s]
Permutation test:  13%|█▎        | 1290/10000 [00:14<01:38, 88.87 permutations/s]
Permutation test:  13%|█▎        | 1300/10000 [00:14<01:41, 85.64 permutations/s]
Permutation test:  13%|█▎        | 1314/10000 [00:14<01:30, 96.50 permutations/s]
Permutation test:  13%|█▎        | 1326/10000 [00:14<01:24, 102.51 permutations/s]
Permutation test:  13%|█▎        | 1337/10000 [00:15<01:35, 91.04 permutations/s]
Permutation test:  13%|█▎        | 1347/10000 [00:15<01:33, 92.08 permutations/s]
Permutation test:  14%|█▎        | 1360/10000 [00:15<01:26, 99.81 permutations/s]
Permutation test:  14%|█▎        | 1371/10000 [00:15<01:46, 80.91 permutations/s]
Permutation test:  14%|█▍        | 1380/10000 [00:15<01:50, 78.03 permutations/s]
Permutation test:  14%|█▍        | 1389/10000 [00:15<01:49, 78.57 permutations/s]
Permutation test:  14%|█▍        | 1400/10000 [00:15<01:47, 80.18 permutations/s]
Permutation test:  14%|█▍        | 1409/10000 [00:16<01:45, 81.79 permutations/s]
Permutation test:  14%|█▍        | 1422/10000 [00:16<01:31, 94.11 permutations/s]
Permutation test:  14%|█▍        | 1432/10000 [00:16<01:40, 85.52 permutations/s]
Permutation test:  14%|█▍        | 1441/10000 [00:16<01:44, 81.60 permutations/s]
Permutation test:  14%|█▍        | 1450/10000 [00:16<01:50, 77.69 permutations/s]
Permutation test:  15%|█▍        | 1458/10000 [00:16<02:00, 70.91 permutations/s]
Permutation test:  15%|█▍        | 1471/10000 [00:16<01:50, 77.12 permutations/s]
Permutation test:  15%|█▍        | 1480/10000 [00:16<01:51, 76.58 permutations/s]
Permutation test:  15%|█▍        | 1490/10000 [00:17<01:44, 81.34 permutations/s]
Permutation test:  15%|█▌        | 1502/10000 [00:17<01:35, 88.81 permutations/s]
Permutation test:  15%|█▌        | 1512/10000 [00:17<02:00, 70.31 permutations/s]
Permutation test:  15%|█▌        | 1520/10000 [00:17<01:59, 71.20 permutations/s]
Permutation test:  15%|█▌        | 1534/10000 [00:17<01:45, 80.01 permutations/s]
Permutation test:  15%|█▌        | 1543/10000 [00:17<01:42, 82.23 permutations/s]
Permutation test:  16%|█▌        | 1557/10000 [00:17<01:31, 92.35 permutations/s]
Permutation test:  16%|█▌        | 1567/10000 [00:17<01:30, 93.26 permutations/s]
Permutation test:  16%|█▌        | 1581/10000 [00:18<01:29, 93.69 permutations/s]
Permutation test:  16%|█▌        | 1593/10000 [00:18<01:26, 97.41 permutations/s]
Permutation test:  16%|█▌        | 1605/10000 [00:18<01:29, 93.69 permutations/s]
Permutation test:  16%|█▌        | 1615/10000 [00:18<01:43, 81.13 permutations/s]
Permutation test:  16%|█▌        | 1624/10000 [00:18<01:59, 70.14 permutations/s]
Permutation test:  16%|█▋        | 1632/10000 [00:18<02:10, 64.35 permutations/s]
Permutation test:  16%|█▋        | 1642/10000 [00:18<01:56, 71.53 permutations/s]
Permutation test:  16%|█▋        | 1650/10000 [00:19<02:00, 69.07 permutations/s]
Permutation test:  17%|█▋        | 1659/10000 [00:19<01:54, 72.74 permutations/s]
Permutation test:  17%|█▋        | 1669/10000 [00:19<01:48, 76.56 permutations/s]
Permutation test:  17%|█▋        | 1678/10000 [00:19<01:44, 79.46 permutations/s]
Permutation test:  17%|█▋        | 1687/10000 [00:19<01:49, 76.15 permutations/s]
Permutation test:  17%|█▋        | 1698/10000 [00:19<01:38, 84.19 permutations/s]
Permutation test:  17%|█▋        | 1707/10000 [00:19<01:42, 81.30 permutations/s]
Permutation test:  17%|█▋        | 1718/10000 [00:19<01:41, 81.32 permutations/s]
Permutation test:  17%|█▋        | 1727/10000 [00:20<01:49, 75.68 permutations/s]
Permutation test:  17%|█▋        | 1735/10000 [00:20<01:56, 71.04 permutations/s]
Permutation test:  17%|█▋        | 1743/10000 [00:20<02:02, 67.18 permutations/s]
Permutation test:  18%|█▊        | 1751/10000 [00:20<01:58, 69.60 permutations/s]
Permutation test:  18%|█▊        | 1763/10000 [00:20<01:45, 77.91 permutations/s]
Permutation test:  18%|█▊        | 1771/10000 [00:20<01:52, 73.24 permutations/s]
Permutation test:  18%|█▊        | 1783/10000 [00:20<01:37, 84.18 permutations/s]
Permutation test:  18%|█▊        | 1792/10000 [00:20<01:39, 82.40 permutations/s]
Permutation test:  18%|█▊        | 1803/10000 [00:20<01:31, 89.17 permutations/s]
Permutation test:  18%|█▊        | 1813/10000 [00:21<01:43, 78.81 permutations/s]
Permutation test:  18%|█▊        | 1822/10000 [00:21<01:40, 81.16 permutations/s]
Permutation test:  18%|█▊        | 1831/10000 [00:21<01:40, 81.33 permutations/s]
Permutation test:  18%|█▊        | 1840/10000 [00:21<01:38, 83.20 permutations/s]
Permutation test:  18%|█▊        | 1849/10000 [00:21<02:19, 58.37 permutations/s]
Permutation test:  19%|█▊        | 1856/10000 [00:21<02:21, 57.45 permutations/s]
Permutation test:  19%|█▊        | 1863/10000 [00:21<02:18, 58.74 permutations/s]
Permutation test:  19%|█▊        | 1871/10000 [00:22<02:17, 59.33 permutations/s]
Permutation test:  19%|█▉        | 1878/10000 [00:22<02:15, 60.12 permutations/s]
Permutation test:  19%|█▉        | 1885/10000 [00:22<02:10, 62.38 permutations/s]
Permutation test:  19%|█▉        | 1892/10000 [00:22<02:15, 60.04 permutations/s]
Permutation test:  19%|█▉        | 1899/10000 [00:22<02:26, 55.24 permutations/s]
Permutation test:  19%|█▉        | 1907/10000 [00:22<02:14, 59.98 permutations/s]
Permutation test:  19%|█▉        | 1914/10000 [00:22<02:11, 61.34 permutations/s]
Permutation test:  19%|█▉        | 1927/10000 [00:22<01:45, 76.28 permutations/s]
Permutation test:  19%|█▉        | 1936/10000 [00:23<01:45, 76.67 permutations/s]
Permutation test:  19%|█▉        | 1944/10000 [00:23<01:53, 70.84 permutations/s]
Permutation test:  20%|█▉        | 1953/10000 [00:23<01:53, 70.72 permutations/s]
Permutation test:  20%|█▉        | 1963/10000 [00:23<01:47, 75.02 permutations/s]
Permutation test:  20%|█▉        | 1971/10000 [00:23<02:02, 65.50 permutations/s]
Permutation test:  20%|█▉        | 1978/10000 [00:23<02:13, 60.14 permutations/s]
Permutation test:  20%|█▉        | 1986/10000 [00:23<02:11, 60.83 permutations/s]
Permutation test:  20%|█▉        | 1993/10000 [00:23<02:10, 61.20 permutations/s]
Permutation test:  20%|██        | 2000/10000 [00:24<02:13, 59.97 permutations/s]
Permutation test:  20%|██        | 2008/10000 [00:24<02:06, 62.94 permutations/s]
Permutation test:  20%|██        | 2016/10000 [00:24<02:00, 66.14 permutations/s]
Permutation test:  20%|██        | 2023/10000 [00:24<02:19, 57.32 permutations/s]
Permutation test:  20%|██        | 2029/10000 [00:24<02:26, 54.33 permutations/s]
Permutation test:  20%|██        | 2035/10000 [00:24<02:24, 55.16 permutations/s]
Permutation test:  20%|██        | 2042/10000 [00:24<02:17, 57.69 permutations/s]
Permutation test:  20%|██        | 2048/10000 [00:24<02:17, 57.73 permutations/s]
Permutation test:  21%|██        | 2056/10000 [00:25<02:05, 63.09 permutations/s]
Permutation test:  21%|██        | 2066/10000 [00:25<02:00, 66.11 permutations/s]
Permutation test:  21%|██        | 2073/10000 [00:25<02:04, 63.66 permutations/s]
Permutation test:  21%|██        | 2080/10000 [00:25<02:05, 63.25 permutations/s]
Permutation test:  21%|██        | 2088/10000 [00:25<02:10, 60.82 permutations/s]
Permutation test:  21%|██        | 2095/10000 [00:25<02:17, 57.31 permutations/s]
Permutation test:  21%|██        | 2103/10000 [00:25<02:08, 61.57 permutations/s]
Permutation test:  21%|██        | 2110/10000 [00:25<02:06, 62.50 permutations/s]
Permutation test:  21%|██        | 2117/10000 [00:26<02:16, 57.88 permutations/s]
Permutation test:  21%|██▏       | 2125/10000 [00:26<02:15, 58.12 permutations/s]
Permutation test:  21%|██▏       | 2132/10000 [00:26<02:24, 54.57 permutations/s]
Permutation test:  21%|██▏       | 2138/10000 [00:26<02:30, 52.28 permutations/s]
Permutation test:  21%|██▏       | 2144/10000 [00:26<02:47, 46.88 permutations/s]
Permutation test:  22%|██▏       | 2155/10000 [00:26<02:08, 60.81 permutations/s]
Permutation test:  22%|██▏       | 2162/10000 [00:26<02:09, 60.72 permutations/s]
Permutation test:  22%|██▏       | 2169/10000 [00:26<02:19, 55.96 permutations/s]
Permutation test:  22%|██▏       | 2177/10000 [00:27<02:12, 58.91 permutations/s]
Permutation test:  22%|██▏       | 2185/10000 [00:27<02:10, 59.83 permutations/s]
Permutation test:  22%|██▏       | 2195/10000 [00:27<01:51, 69.73 permutations/s]
Permutation test:  22%|██▏       | 2203/10000 [00:27<02:03, 63.29 permutations/s]
Permutation test:  22%|██▏       | 2210/10000 [00:27<02:08, 60.66 permutations/s]
Permutation test:  22%|██▏       | 2217/10000 [00:27<02:07, 61.19 permutations/s]
Permutation test:  22%|██▏       | 2224/10000 [00:27<02:12, 58.66 permutations/s]
Permutation test:  22%|██▏       | 2230/10000 [00:27<02:11, 58.91 permutations/s]
Permutation test:  22%|██▏       | 2236/10000 [00:28<02:23, 54.10 permutations/s]
Permutation test:  22%|██▏       | 2244/10000 [00:28<02:11, 58.88 permutations/s]
Permutation test:  22%|██▎       | 2250/10000 [00:28<02:15, 57.36 permutations/s]
Permutation test:  23%|██▎       | 2256/10000 [00:28<02:22, 54.29 permutations/s]
Permutation test:  23%|██▎       | 2262/10000 [00:28<02:33, 50.35 permutations/s]
Permutation test:  23%|██▎       | 2270/10000 [00:28<02:20, 54.90 permutations/s]
Permutation test:  23%|██▎       | 2279/10000 [00:28<02:11, 58.62 permutations/s]
Permutation test:  23%|██▎       | 2285/10000 [00:28<02:12, 58.36 permutations/s]
Permutation test:  23%|██▎       | 2295/10000 [00:29<02:01, 63.61 permutations/s]
Permutation test:  23%|██▎       | 2302/10000 [00:29<02:11, 58.43 permutations/s]
Permutation test:  23%|██▎       | 2312/10000 [00:29<01:53, 67.92 permutations/s]
Permutation test:  23%|██▎       | 2319/10000 [00:29<01:59, 64.13 permutations/s]
Permutation test:  23%|██▎       | 2326/10000 [00:29<01:57, 65.28 permutations/s]
Permutation test:  23%|██▎       | 2333/10000 [00:29<02:11, 58.41 permutations/s]
Permutation test:  23%|██▎       | 2340/10000 [00:29<02:28, 51.61 permutations/s]
Permutation test:  23%|██▎       | 2346/10000 [00:29<02:31, 50.62 permutations/s]
Permutation test:  24%|██▎       | 2353/10000 [00:30<02:23, 53.30 permutations/s]
Permutation test:  24%|██▎       | 2361/10000 [00:30<02:21, 54.00 permutations/s]
Permutation test:  24%|██▎       | 2367/10000 [00:30<02:17, 55.41 permutations/s]
Permutation test:  24%|██▎       | 2373/10000 [00:30<02:20, 54.41 permutations/s]
Permutation test:  24%|██▍       | 2379/10000 [00:30<02:19, 54.70 permutations/s]
Permutation test:  24%|██▍       | 2386/10000 [00:30<02:10, 58.20 permutations/s]
Permutation test:  24%|██▍       | 2393/10000 [00:30<02:09, 58.78 permutations/s]
Permutation test:  24%|██▍       | 2399/10000 [00:30<02:11, 57.90 permutations/s]
Permutation test:  24%|██▍       | 2409/10000 [00:31<01:54, 66.55 permutations/s]
Permutation test:  24%|██▍       | 2421/10000 [00:31<01:33, 81.05 permutations/s]
Permutation test:  24%|██▍       | 2430/10000 [00:31<01:52, 67.10 permutations/s]
Permutation test:  24%|██▍       | 2438/10000 [00:31<02:06, 59.82 permutations/s]
Permutation test:  24%|██▍       | 2445/10000 [00:31<02:23, 52.48 permutations/s]
Permutation test:  25%|██▍       | 2451/10000 [00:31<02:33, 49.04 permutations/s]
Permutation test:  25%|██▍       | 2457/10000 [00:31<02:33, 49.26 permutations/s]
Permutation test:  25%|██▍       | 2464/10000 [00:32<02:20, 53.51 permutations/s]
Permutation test:  25%|██▍       | 2470/10000 [00:32<02:39, 47.25 permutations/s]
Permutation test:  25%|██▍       | 2476/10000 [00:32<02:46, 45.19 permutations/s]
Permutation test:  25%|██▍       | 2481/10000 [00:32<02:45, 45.37 permutations/s]
Permutation test:  25%|██▍       | 2486/10000 [00:32<02:50, 43.98 permutations/s]
Permutation test:  25%|██▍       | 2491/10000 [00:32<02:52, 43.41 permutations/s]
Permutation test:  25%|██▍       | 2499/10000 [00:32<02:24, 52.04 permutations/s]
Permutation test:  25%|██▌       | 2505/10000 [00:32<02:29, 50.03 permutations/s]
Permutation test:  25%|██▌       | 2511/10000 [00:33<02:22, 52.45 permutations/s]
Permutation test:  25%|██▌       | 2518/10000 [00:33<02:23, 52.21 permutations/s]
Permutation test:  25%|██▌       | 2528/10000 [00:33<01:58, 63.19 permutations/s]
Permutation test:  25%|██▌       | 2535/10000 [00:33<01:56, 64.23 permutations/s]
Permutation test:  25%|██▌       | 2542/10000 [00:33<02:01, 61.26 permutations/s]
Permutation test:  25%|██▌       | 2549/10000 [00:33<02:10, 56.98 permutations/s]
Permutation test:  26%|██▌       | 2555/10000 [00:33<02:28, 50.01 permutations/s]
Permutation test:  26%|██▌       | 2561/10000 [00:33<02:29, 49.70 permutations/s]
Permutation test:  26%|██▌       | 2567/10000 [00:34<02:32, 48.89 permutations/s]
Permutation test:  26%|██▌       | 2575/10000 [00:34<02:16, 54.28 permutations/s]
Permutation test:  26%|██▌       | 2581/10000 [00:34<02:14, 55.23 permutations/s]
Permutation test:  26%|██▌       | 2588/10000 [00:34<02:19, 52.96 permutations/s]
Permutation test:  26%|██▌       | 2594/10000 [00:34<02:24, 51.09 permutations/s]
Permutation test:  26%|██▌       | 2600/10000 [00:34<02:35, 47.62 permutations/s]
Permutation test:  26%|██▌       | 2606/10000 [00:34<02:33, 48.28 permutations/s]
Permutation test:  26%|██▌       | 2614/10000 [00:34<02:20, 52.53 permutations/s]
Permutation test:  26%|██▌       | 2624/10000 [00:35<01:58, 62.43 permutations/s]
Permutation test:  26%|██▋       | 2632/10000 [00:35<01:53, 65.01 permutations/s]
Permutation test:  26%|██▋       | 2639/10000 [00:35<01:54, 64.22 permutations/s]
Permutation test:  26%|██▋       | 2646/10000 [00:35<01:52, 65.65 permutations/s]
Permutation test:  27%|██▋       | 2654/10000 [00:35<01:48, 67.49 permutations/s]
Permutation test:  27%|██▋       | 2663/10000 [00:35<01:41, 72.21 permutations/s]
Permutation test:  27%|██▋       | 2671/10000 [00:35<01:51, 65.48 permutations/s]
Permutation test:  27%|██▋       | 2678/10000 [00:35<02:02, 59.91 permutations/s]
Permutation test:  27%|██▋       | 2686/10000 [00:36<01:54, 63.66 permutations/s]
Permutation test:  27%|██▋       | 2694/10000 [00:36<01:58, 61.44 permutations/s]
Permutation test:  27%|██▋       | 2701/10000 [00:36<02:04, 58.83 permutations/s]
Permutation test:  27%|██▋       | 2707/10000 [00:36<02:08, 56.91 permutations/s]
Permutation test:  27%|██▋       | 2714/10000 [00:36<02:14, 54.19 permutations/s]
Permutation test:  27%|██▋       | 2722/10000 [00:36<02:03, 58.90 permutations/s]
Permutation test:  27%|██▋       | 2728/10000 [00:36<02:05, 57.94 permutations/s]
Permutation test:  27%|██▋       | 2734/10000 [00:36<02:14, 53.90 permutations/s]
Permutation test:  27%|██▋       | 2743/10000 [00:37<01:57, 61.95 permutations/s]
Permutation test:  28%|██▊       | 2752/10000 [00:37<01:45, 68.54 permutations/s]
Permutation test:  28%|██▊       | 2760/10000 [00:37<01:50, 65.39 permutations/s]
Permutation test:  28%|██▊       | 2767/10000 [00:37<01:53, 63.89 permutations/s]
Permutation test:  28%|██▊       | 2774/10000 [00:37<02:03, 58.61 permutations/s]
Permutation test:  28%|██▊       | 2780/10000 [00:37<02:02, 58.91 permutations/s]
Permutation test:  28%|██▊       | 2786/10000 [00:37<02:04, 58.02 permutations/s]
Permutation test:  28%|██▊       | 2795/10000 [00:37<01:51, 64.57 permutations/s]
Permutation test:  28%|██▊       | 2802/10000 [00:37<01:55, 62.58 permutations/s]
Permutation test:  28%|██▊       | 2809/10000 [00:38<02:03, 58.34 permutations/s]
Permutation test:  28%|██▊       | 2815/10000 [00:38<02:03, 58.18 permutations/s]
Permutation test:  28%|██▊       | 2821/10000 [00:38<02:23, 50.10 permutations/s]
Permutation test:  28%|██▊       | 2827/10000 [00:38<02:20, 51.16 permutations/s]
Permutation test:  28%|██▊       | 2833/10000 [00:38<02:15, 52.74 permutations/s]
Permutation test:  28%|██▊       | 2841/10000 [00:38<02:00, 59.35 permutations/s]
Permutation test:  28%|██▊       | 2848/10000 [00:38<02:21, 50.58 permutations/s]
Permutation test:  29%|██▊       | 2854/10000 [00:38<02:18, 51.67 permutations/s]
Permutation test:  29%|██▊       | 2865/10000 [00:39<01:54, 62.37 permutations/s]
Permutation test:  29%|██▊       | 2872/10000 [00:39<01:53, 62.89 permutations/s]
Permutation test:  29%|██▉       | 2880/10000 [00:39<01:46, 66.97 permutations/s]
Permutation test:  29%|██▉       | 2887/10000 [00:39<01:54, 62.27 permutations/s]
Permutation test:  29%|██▉       | 2894/10000 [00:39<01:52, 63.10 permutations/s]
Permutation test:  29%|██▉       | 2901/10000 [00:39<02:06, 56.33 permutations/s]
Permutation test:  29%|██▉       | 2907/10000 [00:39<02:05, 56.60 permutations/s]
Permutation test:  29%|██▉       | 2915/10000 [00:39<01:57, 60.31 permutations/s]
Permutation test:  29%|██▉       | 2922/10000 [00:40<01:56, 60.77 permutations/s]
Permutation test:  29%|██▉       | 2929/10000 [00:40<01:53, 62.51 permutations/s]
Permutation test:  29%|██▉       | 2936/10000 [00:40<01:58, 59.50 permutations/s]
Permutation test:  29%|██▉       | 2943/10000 [00:40<01:54, 61.54 permutations/s]
Permutation test:  30%|██▉       | 2950/10000 [00:40<01:51, 63.10 permutations/s]
Permutation test:  30%|██▉       | 2958/10000 [00:40<01:48, 64.99 permutations/s]
Permutation test:  30%|██▉       | 2966/10000 [00:40<01:44, 67.59 permutations/s]
Permutation test:  30%|██▉       | 2973/10000 [00:40<01:49, 64.03 permutations/s]
Permutation test:  30%|██▉       | 2980/10000 [00:40<01:51, 62.76 permutations/s]
Permutation test:  30%|██▉       | 2987/10000 [00:41<01:52, 62.10 permutations/s]
Permutation test:  30%|██▉       | 2994/10000 [00:41<01:57, 59.83 permutations/s]
Permutation test:  30%|███       | 3001/10000 [00:41<01:54, 61.14 permutations/s]
Permutation test:  30%|███       | 3011/10000 [00:41<01:40, 69.61 permutations/s]
Permutation test:  30%|███       | 3021/10000 [00:41<01:30, 77.54 permutations/s]
Permutation test:  30%|███       | 3032/10000 [00:41<01:27, 79.64 permutations/s]
Permutation test:  30%|███       | 3041/10000 [00:41<01:38, 70.77 permutations/s]
Permutation test:  30%|███       | 3049/10000 [00:41<01:39, 70.19 permutations/s]
Permutation test:  31%|███       | 3060/10000 [00:42<01:35, 72.57 permutations/s]
Permutation test:  31%|███       | 3068/10000 [00:42<01:39, 69.59 permutations/s]
Permutation test:  31%|███       | 3076/10000 [00:42<01:40, 68.71 permutations/s]
Permutation test:  31%|███       | 3083/10000 [00:42<01:58, 58.47 permutations/s]
Permutation test:  31%|███       | 3090/10000 [00:42<02:04, 55.71 permutations/s]
Permutation test:  31%|███       | 3096/10000 [00:42<02:07, 53.94 permutations/s]
Permutation test:  31%|███       | 3103/10000 [00:42<02:01, 56.70 permutations/s]
Permutation test:  31%|███       | 3111/10000 [00:42<01:50, 62.18 permutations/s]
Permutation test:  31%|███       | 3122/10000 [00:43<01:42, 66.87 permutations/s]
Permutation test:  31%|███▏      | 3129/10000 [00:43<01:50, 61.98 permutations/s]
Permutation test:  31%|███▏      | 3136/10000 [00:43<01:50, 62.15 permutations/s]
Permutation test:  31%|███▏      | 3146/10000 [00:43<01:38, 69.72 permutations/s]
Permutation test:  32%|███▏      | 3154/10000 [00:43<01:45, 64.79 permutations/s]
Permutation test:  32%|███▏      | 3161/10000 [00:43<01:53, 60.08 permutations/s]
Permutation test:  32%|███▏      | 3168/10000 [00:43<02:03, 55.46 permutations/s]
Permutation test:  32%|███▏      | 3174/10000 [00:44<02:06, 53.98 permutations/s]
Permutation test:  32%|███▏      | 3180/10000 [00:44<02:07, 53.49 permutations/s]
Permutation test:  32%|███▏      | 3188/10000 [00:44<01:53, 59.99 permutations/s]
Permutation test:  32%|███▏      | 3195/10000 [00:44<01:52, 60.65 permutations/s]
Permutation test:  32%|███▏      | 3204/10000 [00:44<01:49, 61.99 permutations/s]
Permutation test:  32%|███▏      | 3212/10000 [00:44<01:42, 66.49 permutations/s]
Permutation test:  32%|███▏      | 3219/10000 [00:44<02:03, 55.12 permutations/s]
Permutation test:  32%|███▏      | 3225/10000 [00:44<02:07, 53.23 permutations/s]
Permutation test:  32%|███▏      | 3235/10000 [00:44<01:45, 64.12 permutations/s]
Permutation test:  32%|███▏      | 3242/10000 [00:45<01:46, 63.40 permutations/s]
Permutation test:  32%|███▏      | 3249/10000 [00:45<01:55, 58.63 permutations/s]
Permutation test:  33%|███▎      | 3260/10000 [00:45<01:36, 69.98 permutations/s]
Permutation test:  33%|███▎      | 3269/10000 [00:45<01:34, 70.92 permutations/s]
Permutation test:  33%|███▎      | 3277/10000 [00:45<01:42, 65.76 permutations/s]
Permutation test:  33%|███▎      | 3284/10000 [00:45<01:51, 60.10 permutations/s]
Permutation test:  33%|███▎      | 3294/10000 [00:45<01:37, 68.78 permutations/s]
Permutation test:  33%|███▎      | 3302/10000 [00:45<01:38, 67.67 permutations/s]
Permutation test:  33%|███▎      | 3309/10000 [00:46<01:58, 56.43 permutations/s]
Permutation test:  33%|███▎      | 3316/10000 [00:46<01:59, 55.93 permutations/s]
Permutation test:  33%|███▎      | 3322/10000 [00:46<02:06, 52.88 permutations/s]
Permutation test:  33%|███▎      | 3328/10000 [00:46<02:02, 54.52 permutations/s]
Permutation test:  33%|███▎      | 3334/10000 [00:46<02:16, 48.99 permutations/s]
Permutation test:  33%|███▎      | 3340/10000 [00:46<02:15, 49.17 permutations/s]
Permutation test:  33%|███▎      | 3346/10000 [00:46<02:24, 46.16 permutations/s]
Permutation test:  34%|███▎      | 3354/10000 [00:47<02:11, 50.59 permutations/s]
Permutation test:  34%|███▎      | 3360/10000 [00:47<02:06, 52.35 permutations/s]
Permutation test:  34%|███▎      | 3366/10000 [00:47<02:11, 50.32 permutations/s]
Permutation test:  34%|███▎      | 3373/10000 [00:47<02:04, 53.15 permutations/s]
Permutation test:  34%|███▍      | 3380/10000 [00:47<02:08, 51.64 permutations/s]
Permutation test:  34%|███▍      | 3386/10000 [00:47<02:12, 49.76 permutations/s]
Permutation test:  34%|███▍      | 3392/10000 [00:47<02:18, 47.59 permutations/s]
Permutation test:  34%|███▍      | 3402/10000 [00:47<01:49, 60.27 permutations/s]
Permutation test:  34%|███▍      | 3410/10000 [00:48<01:46, 61.60 permutations/s]
Permutation test:  34%|███▍      | 3417/10000 [00:48<01:50, 59.48 permutations/s]
Permutation test:  34%|███▍      | 3425/10000 [00:48<01:47, 61.00 permutations/s]
Permutation test:  34%|███▍      | 3432/10000 [00:48<01:46, 61.89 permutations/s]
Permutation test:  34%|███▍      | 3439/10000 [00:48<02:03, 53.30 permutations/s]
Permutation test:  34%|███▍      | 3445/10000 [00:48<02:03, 53.08 permutations/s]
Permutation test:  35%|███▍      | 3451/10000 [00:48<02:00, 54.14 permutations/s]
Permutation test:  35%|███▍      | 3457/10000 [00:48<02:07, 51.49 permutations/s]
Permutation test:  35%|███▍      | 3465/10000 [00:49<01:58, 55.03 permutations/s]
Permutation test:  35%|███▍      | 3471/10000 [00:49<02:02, 53.25 permutations/s]
Permutation test:  35%|███▍      | 3479/10000 [00:49<02:00, 54.11 permutations/s]
Permutation test:  35%|███▍      | 3485/10000 [00:49<01:58, 55.07 permutations/s]
Permutation test:  35%|███▍      | 3494/10000 [00:49<01:49, 59.20 permutations/s]
Permutation test:  35%|███▌      | 3500/10000 [00:49<01:50, 58.71 permutations/s]
Permutation test:  35%|███▌      | 3507/10000 [00:49<01:49, 59.14 permutations/s]
Permutation test:  35%|███▌      | 3515/10000 [00:49<01:49, 59.16 permutations/s]
Permutation test:  35%|███▌      | 3523/10000 [00:50<01:41, 63.74 permutations/s]
Permutation test:  35%|███▌      | 3531/10000 [00:50<01:39, 64.80 permutations/s]
Permutation test:  35%|███▌      | 3538/10000 [00:50<02:00, 53.50 permutations/s]
Permutation test:  35%|███▌      | 3545/10000 [00:50<01:53, 56.82 permutations/s]
Permutation test:  36%|███▌      | 3552/10000 [00:50<01:57, 54.80 permutations/s]
Permutation test:  36%|███▌      | 3559/10000 [00:50<01:51, 57.97 permutations/s]
Permutation test:  36%|███▌      | 3566/10000 [00:50<01:54, 56.30 permutations/s]
Permutation test:  36%|███▌      | 3572/10000 [00:50<02:02, 52.41 permutations/s]
Permutation test:  36%|███▌      | 3579/10000 [00:51<01:57, 54.68 permutations/s]
Permutation test:  36%|███▌      | 3585/10000 [00:51<01:55, 55.42 permutations/s]
Permutation test:  36%|███▌      | 3591/10000 [00:51<02:02, 52.21 permutations/s]
Permutation test:  36%|███▌      | 3598/10000 [00:51<01:55, 55.66 permutations/s]
Permutation test:  36%|███▌      | 3607/10000 [00:51<01:51, 57.56 permutations/s]
Permutation test:  36%|███▌      | 3615/10000 [00:51<01:43, 61.79 permutations/s]
Permutation test:  36%|███▌      | 3622/10000 [00:51<01:42, 62.06 permutations/s]
Permutation test:  36%|███▋      | 3629/10000 [00:51<01:45, 60.37 permutations/s]
Permutation test:  36%|███▋      | 3637/10000 [00:52<01:37, 65.48 permutations/s]
Permutation test:  36%|███▋      | 3645/10000 [00:52<01:34, 67.29 permutations/s]
Permutation test:  37%|███▋      | 3652/10000 [00:52<01:43, 61.26 permutations/s]
Permutation test:  37%|███▋      | 3659/10000 [00:52<02:01, 52.16 permutations/s]
Permutation test:  37%|███▋      | 3665/10000 [00:52<02:05, 50.33 permutations/s]
Permutation test:  37%|███▋      | 3671/10000 [00:52<02:07, 49.72 permutations/s]
Permutation test:  37%|███▋      | 3679/10000 [00:52<01:53, 55.88 permutations/s]
Permutation test:  37%|███▋      | 3685/10000 [00:52<01:50, 56.91 permutations/s]
Permutation test:  37%|███▋      | 3692/10000 [00:53<01:46, 59.31 permutations/s]
Permutation test:  37%|███▋      | 3703/10000 [00:53<01:38, 64.03 permutations/s]
Permutation test:  37%|███▋      | 3710/10000 [00:53<01:41, 61.80 permutations/s]
Permutation test:  37%|███▋      | 3717/10000 [00:53<01:49, 57.39 permutations/s]
Permutation test:  37%|███▋      | 3723/10000 [00:53<02:05, 50.16 permutations/s]
Permutation test:  37%|███▋      | 3731/10000 [00:53<01:50, 56.76 permutations/s]
Permutation test:  37%|███▋      | 3739/10000 [00:53<01:44, 59.90 permutations/s]
Permutation test:  38%|███▊      | 3753/10000 [00:53<01:20, 77.85 permutations/s]
Permutation test:  38%|███▊      | 3767/10000 [00:54<01:06, 93.97 permutations/s]
Permutation test:  38%|███▊      | 3777/10000 [00:54<01:17, 80.73 permutations/s]
Permutation test:  38%|███▊      | 3786/10000 [00:54<01:33, 66.13 permutations/s]
Permutation test:  38%|███▊      | 3794/10000 [00:54<01:44, 59.22 permutations/s]
Permutation test:  38%|███▊      | 3801/10000 [00:54<01:41, 61.13 permutations/s]
Permutation test:  38%|███▊      | 3808/10000 [00:54<01:49, 56.46 permutations/s]
Permutation test:  38%|███▊      | 3815/10000 [00:55<01:52, 54.77 permutations/s]
Permutation test:  38%|███▊      | 3823/10000 [00:55<01:42, 60.16 permutations/s]
Permutation test:  38%|███▊      | 3831/10000 [00:55<01:36, 63.95 permutations/s]
Permutation test:  38%|███▊      | 3843/10000 [00:55<01:22, 75.06 permutations/s]
Permutation test:  39%|███▊      | 3854/10000 [00:55<01:13, 83.30 permutations/s]
Permutation test:  39%|███▊      | 3863/10000 [00:55<01:30, 68.01 permutations/s]
Permutation test:  39%|███▊      | 3871/10000 [00:55<01:39, 61.39 permutations/s]
Permutation test:  39%|███▉      | 3881/10000 [00:55<01:35, 64.26 permutations/s]
Permutation test:  39%|███▉      | 3892/10000 [00:56<01:24, 72.56 permutations/s]
Permutation test:  39%|███▉      | 3903/10000 [00:56<01:16, 79.62 permutations/s]
Permutation test:  39%|███▉      | 3912/10000 [00:56<01:22, 73.75 permutations/s]
Permutation test:  39%|███▉      | 3920/10000 [00:56<01:31, 66.24 permutations/s]
Permutation test:  39%|███▉      | 3933/10000 [00:56<01:14, 81.17 permutations/s]
Permutation test:  39%|███▉      | 3944/10000 [00:56<01:09, 87.70 permutations/s]
Permutation test:  40%|███▉      | 3958/10000 [00:56<01:04, 93.62 permutations/s]
Permutation test:  40%|███▉      | 3968/10000 [00:56<01:11, 83.81 permutations/s]
Permutation test:  40%|███▉      | 3977/10000 [00:57<01:18, 77.05 permutations/s]
Permutation test:  40%|███▉      | 3994/10000 [00:57<01:02, 96.61 permutations/s]
Permutation test:  40%|████      | 4005/10000 [00:57<01:00, 98.89 permutations/s]
Permutation test:  40%|████      | 4016/10000 [00:57<01:08, 86.80 permutations/s]
Permutation test:  40%|████      | 4026/10000 [00:57<01:10, 84.72 permutations/s]
Permutation test:  40%|████      | 4042/10000 [00:57<01:05, 90.68 permutations/s]
Permutation test:  41%|████      | 4052/10000 [00:57<01:08, 87.12 permutations/s]
Permutation test:  41%|████      | 4061/10000 [00:58<01:21, 73.13 permutations/s]
Permutation test:  41%|████      | 4069/10000 [00:58<01:34, 62.57 permutations/s]
Permutation test:  41%|████      | 4076/10000 [00:58<01:41, 58.24 permutations/s]
Permutation test:  41%|████      | 4083/10000 [00:58<01:52, 52.64 permutations/s]
Permutation test:  41%|████      | 4089/10000 [00:58<01:56, 50.63 permutations/s]
Permutation test:  41%|████      | 4095/10000 [00:58<01:53, 51.86 permutations/s]
Permutation test:  41%|████      | 4101/10000 [00:58<01:54, 51.47 permutations/s]
Permutation test:  41%|████      | 4108/10000 [00:59<01:45, 55.84 permutations/s]
Permutation test:  41%|████      | 4114/10000 [00:59<01:46, 55.20 permutations/s]
Permutation test:  41%|████      | 4123/10000 [00:59<01:34, 62.08 permutations/s]
Permutation test:  41%|████▏     | 4130/10000 [00:59<01:36, 60.69 permutations/s]
Permutation test:  41%|████▏     | 4137/10000 [00:59<01:32, 63.11 permutations/s]
Permutation test:  41%|████▏     | 4145/10000 [00:59<01:35, 61.61 permutations/s]
Permutation test:  42%|████▏     | 4154/10000 [00:59<01:33, 62.48 permutations/s]
Permutation test:  42%|████▏     | 4162/10000 [00:59<01:28, 66.27 permutations/s]
Permutation test:  42%|████▏     | 4169/10000 [01:00<01:39, 58.40 permutations/s]
Permutation test:  42%|████▏     | 4176/10000 [01:00<01:38, 59.07 permutations/s]
Permutation test:  42%|████▏     | 4185/10000 [01:00<01:34, 61.41 permutations/s]
Permutation test:  42%|████▏     | 4192/10000 [01:00<01:32, 62.91 permutations/s]
Permutation test:  42%|████▏     | 4199/10000 [01:00<01:29, 64.69 permutations/s]
Permutation test:  42%|████▏     | 4206/10000 [01:00<01:28, 65.53 permutations/s]
Permutation test:  42%|████▏     | 4213/10000 [01:00<01:28, 65.21 permutations/s]
Permutation test:  42%|████▏     | 4220/10000 [01:00<01:31, 63.15 permutations/s]
Permutation test:  42%|████▏     | 4227/10000 [01:00<01:30, 63.59 permutations/s]
Permutation test:  42%|████▏     | 4234/10000 [01:01<01:32, 62.52 permutations/s]
Permutation test:  42%|████▏     | 4242/10000 [01:01<01:27, 65.99 permutations/s]
Permutation test:  42%|████▏     | 4249/10000 [01:01<01:33, 61.51 permutations/s]
Permutation test:  43%|████▎     | 4256/10000 [01:01<01:37, 58.95 permutations/s]
Permutation test:  43%|████▎     | 4262/10000 [01:01<01:43, 55.19 permutations/s]
Permutation test:  43%|████▎     | 4268/10000 [01:01<01:57, 48.83 permutations/s]
Permutation test:  43%|████▎     | 4275/10000 [01:01<01:46, 53.71 permutations/s]
Permutation test:  43%|████▎     | 4283/10000 [01:01<01:36, 58.97 permutations/s]
Permutation test:  43%|████▎     | 4291/10000 [01:02<01:37, 58.78 permutations/s]
Permutation test:  43%|████▎     | 4298/10000 [01:02<01:37, 58.22 permutations/s]
Permutation test:  43%|████▎     | 4304/10000 [01:02<01:43, 55.18 permutations/s]
Permutation test:  43%|████▎     | 4310/10000 [01:02<01:43, 54.94 permutations/s]
Permutation test:  43%|████▎     | 4322/10000 [01:02<01:20, 70.92 permutations/s]
Permutation test:  43%|████▎     | 4330/10000 [01:02<01:23, 67.55 permutations/s]
Permutation test:  43%|████▎     | 4338/10000 [01:02<01:28, 64.21 permutations/s]
Permutation test:  43%|████▎     | 4345/10000 [01:02<01:36, 58.78 permutations/s]
Permutation test:  44%|████▎     | 4352/10000 [01:03<01:34, 59.46 permutations/s]
Permutation test:  44%|████▎     | 4362/10000 [01:03<01:22, 68.25 permutations/s]
Permutation test:  44%|████▎     | 4371/10000 [01:03<01:17, 72.89 permutations/s]
Permutation test:  44%|████▍     | 4381/10000 [01:03<01:16, 73.57 permutations/s]
Permutation test:  44%|████▍     | 4391/10000 [01:03<01:11, 78.83 permutations/s]
Permutation test:  44%|████▍     | 4400/10000 [01:03<01:18, 71.35 permutations/s]
Permutation test:  44%|████▍     | 4408/10000 [01:03<01:23, 67.15 permutations/s]
Permutation test:  44%|████▍     | 4415/10000 [01:03<01:24, 66.04 permutations/s]
Permutation test:  44%|████▍     | 4422/10000 [01:04<01:35, 58.18 permutations/s]
Permutation test:  44%|████▍     | 4430/10000 [01:04<01:28, 62.73 permutations/s]
Permutation test:  44%|████▍     | 4437/10000 [01:04<01:40, 55.53 permutations/s]
Permutation test:  44%|████▍     | 4443/10000 [01:04<01:39, 55.62 permutations/s]
Permutation test:  44%|████▍     | 4450/10000 [01:04<01:34, 58.57 permutations/s]
Permutation test:  45%|████▍     | 4457/10000 [01:04<01:38, 56.22 permutations/s]
Permutation test:  45%|████▍     | 4464/10000 [01:04<01:43, 53.29 permutations/s]
Permutation test:  45%|████▍     | 4470/10000 [01:04<01:48, 50.95 permutations/s]
Permutation test:  45%|████▍     | 4478/10000 [01:05<01:36, 57.46 permutations/s]
Permutation test:  45%|████▍     | 4492/10000 [01:05<01:14, 73.51 permutations/s]
Permutation test:  45%|████▌     | 4500/10000 [01:05<01:14, 73.43 permutations/s]
Permutation test:  45%|████▌     | 4508/10000 [01:05<01:15, 73.06 permutations/s]
Permutation test:  45%|████▌     | 4516/10000 [01:05<01:15, 72.40 permutations/s]
Permutation test:  45%|████▌     | 4524/10000 [01:05<01:22, 66.40 permutations/s]
Permutation test:  45%|████▌     | 4533/10000 [01:05<01:16, 71.93 permutations/s]
Permutation test:  45%|████▌     | 4541/10000 [01:05<01:21, 67.02 permutations/s]
Permutation test:  45%|████▌     | 4548/10000 [01:06<01:23, 65.05 permutations/s]
Permutation test:  46%|████▌     | 4555/10000 [01:06<01:31, 59.65 permutations/s]
Permutation test:  46%|████▌     | 4563/10000 [01:06<01:25, 63.96 permutations/s]
Permutation test:  46%|████▌     | 4573/10000 [01:06<01:23, 64.72 permutations/s]
Permutation test:  46%|████▌     | 4580/10000 [01:06<01:30, 60.08 permutations/s]
Permutation test:  46%|████▌     | 4587/10000 [01:06<01:34, 57.42 permutations/s]
Permutation test:  46%|████▌     | 4593/10000 [01:06<01:35, 56.91 permutations/s]
Permutation test:  46%|████▌     | 4599/10000 [01:06<01:48, 49.67 permutations/s]
Permutation test:  46%|████▌     | 4608/10000 [01:07<01:38, 54.61 permutations/s]
Permutation test:  46%|████▌     | 4614/10000 [01:07<01:40, 53.84 permutations/s]
Permutation test:  46%|████▌     | 4622/10000 [01:07<01:30, 59.65 permutations/s]
Permutation test:  46%|████▋     | 4629/10000 [01:07<01:32, 58.18 permutations/s]
Permutation test:  46%|████▋     | 4635/10000 [01:07<01:44, 51.57 permutations/s]
Permutation test:  46%|████▋     | 4645/10000 [01:07<01:34, 56.94 permutations/s]
Permutation test:  47%|████▋     | 4651/10000 [01:07<01:37, 55.01 permutations/s]
Permutation test:  47%|████▋     | 4659/10000 [01:07<01:29, 59.88 permutations/s]
Permutation test:  47%|████▋     | 4668/10000 [01:08<01:19, 67.24 permutations/s]
Permutation test:  47%|████▋     | 4675/10000 [01:08<01:26, 61.25 permutations/s]
Permutation test:  47%|████▋     | 4682/10000 [01:08<01:26, 61.52 permutations/s]
Permutation test:  47%|████▋     | 4689/10000 [01:08<01:31, 58.22 permutations/s]
Permutation test:  47%|████▋     | 4695/10000 [01:08<01:42, 51.64 permutations/s]
Permutation test:  47%|████▋     | 4701/10000 [01:08<01:42, 51.84 permutations/s]
Permutation test:  47%|████▋     | 4707/10000 [01:08<01:48, 48.98 permutations/s]
Permutation test:  47%|████▋     | 4713/10000 [01:09<01:48, 48.64 permutations/s]
Permutation test:  47%|████▋     | 4722/10000 [01:09<01:34, 55.92 permutations/s]
Permutation test:  47%|████▋     | 4730/10000 [01:09<01:33, 56.30 permutations/s]
Permutation test:  47%|████▋     | 4736/10000 [01:09<01:32, 56.60 permutations/s]
Permutation test:  47%|████▋     | 4746/10000 [01:09<01:17, 67.71 permutations/s]
Permutation test:  48%|████▊     | 4753/10000 [01:09<01:24, 62.43 permutations/s]
Permutation test:  48%|████▊     | 4760/10000 [01:09<01:32, 56.71 permutations/s]
Permutation test:  48%|████▊     | 4768/10000 [01:09<01:27, 59.53 permutations/s]
Permutation test:  48%|████▊     | 4775/10000 [01:10<01:29, 58.55 permutations/s]
Permutation test:  48%|████▊     | 4782/10000 [01:10<01:29, 58.49 permutations/s]
Permutation test:  48%|████▊     | 4788/10000 [01:10<01:35, 54.52 permutations/s]
Permutation test:  48%|████▊     | 4794/10000 [01:10<01:42, 50.74 permutations/s]
Permutation test:  48%|████▊     | 4800/10000 [01:10<01:43, 50.37 permutations/s]
Permutation test:  48%|████▊     | 4806/10000 [01:10<01:46, 49.00 permutations/s]
Permutation test:  48%|████▊     | 4812/10000 [01:10<01:41, 51.21 permutations/s]
Permutation test:  48%|████▊     | 4818/10000 [01:10<01:36, 53.44 permutations/s]
Permutation test:  48%|████▊     | 4824/10000 [01:10<01:39, 51.92 permutations/s]
Permutation test:  48%|████▊     | 4832/10000 [01:11<01:32, 55.87 permutations/s]
Permutation test:  48%|████▊     | 4838/10000 [01:11<01:33, 55.22 permutations/s]
Permutation test:  48%|████▊     | 4845/10000 [01:11<01:27, 59.12 permutations/s]
Permutation test:  49%|████▊     | 4854/10000 [01:11<01:18, 65.40 permutations/s]
Permutation test:  49%|████▊     | 4861/10000 [01:11<01:24, 60.69 permutations/s]
Permutation test:  49%|████▊     | 4868/10000 [01:11<01:30, 56.67 permutations/s]
Permutation test:  49%|████▉     | 4875/10000 [01:11<01:28, 58.21 permutations/s]
Permutation test:  49%|████▉     | 4881/10000 [01:11<01:30, 56.36 permutations/s]
Permutation test:  49%|████▉     | 4889/10000 [01:12<01:26, 58.80 permutations/s]
Permutation test:  49%|████▉     | 4895/10000 [01:12<01:27, 58.55 permutations/s]
Permutation test:  49%|████▉     | 4901/10000 [01:12<01:31, 55.76 permutations/s]
Permutation test:  49%|████▉     | 4908/10000 [01:12<01:27, 58.38 permutations/s]
Permutation test:  49%|████▉     | 4916/10000 [01:12<01:27, 58.06 permutations/s]
Permutation test:  49%|████▉     | 4925/10000 [01:12<01:16, 66.24 permutations/s]
Permutation test:  49%|████▉     | 4932/10000 [01:12<01:24, 60.07 permutations/s]
Permutation test:  49%|████▉     | 4939/10000 [01:12<01:31, 55.32 permutations/s]
Permutation test:  49%|████▉     | 4945/10000 [01:13<01:35, 52.78 permutations/s]
Permutation test:  50%|████▉     | 4955/10000 [01:13<01:19, 63.74 permutations/s]
Permutation test:  50%|████▉     | 4962/10000 [01:13<01:24, 59.73 permutations/s]
Permutation test:  50%|████▉     | 4969/10000 [01:13<01:22, 61.13 permutations/s]
Permutation test:  50%|████▉     | 4979/10000 [01:13<01:11, 69.94 permutations/s]
Permutation test:  50%|████▉     | 4988/10000 [01:13<01:14, 67.46 permutations/s]
Permutation test:  50%|████▉     | 4995/10000 [01:13<01:21, 61.70 permutations/s]
Permutation test:  50%|█████     | 5002/10000 [01:13<01:20, 62.15 permutations/s]
Permutation test:  50%|█████     | 5009/10000 [01:14<01:21, 61.46 permutations/s]
Permutation test:  50%|█████     | 5016/10000 [01:14<01:27, 56.69 permutations/s]
Permutation test:  50%|█████     | 5022/10000 [01:14<01:32, 53.71 permutations/s]
Permutation test:  50%|█████     | 5028/10000 [01:14<01:37, 51.23 permutations/s]
Permutation test:  50%|█████     | 5034/10000 [01:14<01:42, 48.55 permutations/s]
Permutation test:  50%|█████     | 5040/10000 [01:14<01:41, 48.87 permutations/s]
Permutation test:  50%|█████     | 5046/10000 [01:14<01:43, 47.88 permutations/s]
Permutation test:  51%|█████     | 5051/10000 [01:14<01:43, 47.93 permutations/s]
Permutation test:  51%|█████     | 5056/10000 [01:15<01:43, 47.82 permutations/s]
Permutation test:  51%|█████     | 5063/10000 [01:15<01:32, 53.37 permutations/s]
Permutation test:  51%|█████     | 5069/10000 [01:15<01:30, 54.64 permutations/s]
Permutation test:  51%|█████     | 5077/10000 [01:15<01:19, 61.58 permutations/s]
Permutation test:  51%|█████     | 5085/10000 [01:15<01:15, 65.46 permutations/s]
Permutation test:  51%|█████     | 5092/10000 [01:15<01:38, 49.79 permutations/s]
Permutation test:  51%|█████     | 5099/10000 [01:15<01:31, 53.46 permutations/s]
Permutation test:  51%|█████     | 5106/10000 [01:15<01:26, 56.52 permutations/s]
Permutation test:  51%|█████     | 5113/10000 [01:15<01:21, 59.87 permutations/s]
Permutation test:  51%|█████     | 5120/10000 [01:16<01:19, 61.24 permutations/s]
Permutation test:  51%|█████▏    | 5127/10000 [01:16<01:28, 54.76 permutations/s]
Permutation test:  51%|█████▏    | 5133/10000 [01:16<01:26, 55.99 permutations/s]
Permutation test:  51%|█████▏    | 5139/10000 [01:16<01:30, 53.57 permutations/s]
Permutation test:  51%|█████▏    | 5146/10000 [01:16<01:34, 51.11 permutations/s]
Permutation test:  52%|█████▏    | 5153/10000 [01:16<01:32, 52.16 permutations/s]
Permutation test:  52%|█████▏    | 5159/10000 [01:16<01:43, 46.69 permutations/s]
Permutation test:  52%|█████▏    | 5165/10000 [01:17<01:39, 48.45 permutations/s]
Permutation test:  52%|█████▏    | 5172/10000 [01:17<01:33, 51.61 permutations/s]
Permutation test:  52%|█████▏    | 5178/10000 [01:17<01:31, 52.67 permutations/s]
Permutation test:  52%|█████▏    | 5189/10000 [01:17<01:17, 61.94 permutations/s]
Permutation test:  52%|█████▏    | 5197/10000 [01:17<01:15, 63.92 permutations/s]
Permutation test:  52%|█████▏    | 5204/10000 [01:17<01:21, 58.81 permutations/s]
Permutation test:  52%|█████▏    | 5211/10000 [01:17<01:19, 60.50 permutations/s]
Permutation test:  52%|█████▏    | 5218/10000 [01:17<01:27, 54.43 permutations/s]
Permutation test:  52%|█████▏    | 5224/10000 [01:18<01:27, 54.60 permutations/s]
Permutation test:  52%|█████▏    | 5230/10000 [01:18<01:39, 47.82 permutations/s]
Permutation test:  52%|█████▏    | 5240/10000 [01:18<01:28, 54.02 permutations/s]
Permutation test:  52%|█████▏    | 5246/10000 [01:18<01:29, 52.93 permutations/s]
Permutation test:  53%|█████▎    | 5253/10000 [01:18<01:24, 56.38 permutations/s]
Permutation test:  53%|█████▎    | 5259/10000 [01:18<01:32, 51.52 permutations/s]
Permutation test:  53%|█████▎    | 5265/10000 [01:18<01:34, 50.25 permutations/s]
Permutation test:  53%|█████▎    | 5272/10000 [01:18<01:27, 54.01 permutations/s]
Permutation test:  53%|█████▎    | 5280/10000 [01:19<01:17, 60.53 permutations/s]
Permutation test:  53%|█████▎    | 5287/10000 [01:19<01:18, 60.07 permutations/s]
Permutation test:  53%|█████▎    | 5296/10000 [01:19<01:14, 63.53 permutations/s]
Permutation test:  53%|█████▎    | 5306/10000 [01:19<01:08, 68.05 permutations/s]
Permutation test:  53%|█████▎    | 5313/10000 [01:19<01:12, 64.98 permutations/s]
Permutation test:  53%|█████▎    | 5322/10000 [01:19<01:06, 70.03 permutations/s]
Permutation test:  53%|█████▎    | 5330/10000 [01:19<01:11, 65.70 permutations/s]
Permutation test:  53%|█████▎    | 5337/10000 [01:19<01:14, 62.43 permutations/s]
Permutation test:  53%|█████▎    | 5346/10000 [01:20<01:09, 67.27 permutations/s]
Permutation test:  54%|█████▎    | 5358/10000 [01:20<00:59, 77.83 permutations/s]
Permutation test:  54%|█████▎    | 5366/10000 [01:20<01:02, 73.68 permutations/s]
Permutation test:  54%|█████▎    | 5374/10000 [01:20<01:13, 62.85 permutations/s]
Permutation test:  54%|█████▍    | 5381/10000 [01:20<01:16, 60.08 permutations/s]
Permutation test:  54%|█████▍    | 5390/10000 [01:20<01:16, 60.27 permutations/s]
Permutation test:  54%|█████▍    | 5397/10000 [01:20<01:19, 57.90 permutations/s]
Permutation test:  54%|█████▍    | 5403/10000 [01:21<01:31, 50.09 permutations/s]
Permutation test:  54%|█████▍    | 5409/10000 [01:21<01:28, 51.64 permutations/s]
Permutation test:  54%|█████▍    | 5415/10000 [01:21<01:28, 51.96 permutations/s]
Permutation test:  54%|█████▍    | 5421/10000 [01:21<01:28, 51.83 permutations/s]
Permutation test:  54%|█████▍    | 5428/10000 [01:21<01:21, 56.35 permutations/s]
Permutation test:  54%|█████▍    | 5435/10000 [01:21<01:23, 54.38 permutations/s]
Permutation test:  54%|█████▍    | 5441/10000 [01:21<01:22, 55.18 permutations/s]
Permutation test:  54%|█████▍    | 5449/10000 [01:21<01:22, 54.86 permutations/s]
Permutation test:  55%|█████▍    | 5457/10000 [01:21<01:14, 61.08 permutations/s]
Permutation test:  55%|█████▍    | 5465/10000 [01:22<01:11, 63.46 permutations/s]
Permutation test:  55%|█████▍    | 5473/10000 [01:22<01:12, 62.65 permutations/s]
Permutation test:  55%|█████▍    | 5483/10000 [01:22<01:05, 69.35 permutations/s]
Permutation test:  55%|█████▍    | 5491/10000 [01:22<01:10, 64.05 permutations/s]
Permutation test:  55%|█████▍    | 5498/10000 [01:22<01:18, 57.22 permutations/s]
Permutation test:  55%|█████▌    | 5504/10000 [01:22<01:23, 53.65 permutations/s]
Permutation test:  55%|█████▌    | 5510/10000 [01:22<01:23, 53.62 permutations/s]
Permutation test:  55%|█████▌    | 5518/10000 [01:23<01:19, 56.29 permutations/s]
Permutation test:  55%|█████▌    | 5529/10000 [01:23<01:11, 62.80 permutations/s]
Permutation test:  55%|█████▌    | 5536/10000 [01:23<01:15, 58.83 permutations/s]
Permutation test:  55%|█████▌    | 5545/10000 [01:23<01:07, 65.54 permutations/s]
Permutation test:  56%|█████▌    | 5552/10000 [01:23<01:09, 63.78 permutations/s]
Permutation test:  56%|█████▌    | 5559/10000 [01:23<01:12, 60.84 permutations/s]
Permutation test:  56%|█████▌    | 5567/10000 [01:23<01:15, 58.97 permutations/s]
Permutation test:  56%|█████▌    | 5573/10000 [01:23<01:16, 58.18 permutations/s]
Permutation test:  56%|█████▌    | 5581/10000 [01:23<01:10, 62.43 permutations/s]
Permutation test:  56%|█████▌    | 5588/10000 [01:24<01:10, 62.98 permutations/s]
Permutation test:  56%|█████▌    | 5596/10000 [01:24<01:05, 67.33 permutations/s]
Permutation test:  56%|█████▌    | 5603/10000 [01:24<01:16, 57.56 permutations/s]
Permutation test:  56%|█████▌    | 5610/10000 [01:24<01:13, 59.98 permutations/s]
Permutation test:  56%|█████▌    | 5617/10000 [01:24<01:17, 56.28 permutations/s]
Permutation test:  56%|█████▌    | 5623/10000 [01:24<01:18, 56.07 permutations/s]
Permutation test:  56%|█████▋    | 5629/10000 [01:24<01:18, 55.84 permutations/s]
Permutation test:  56%|█████▋    | 5635/10000 [01:24<01:23, 52.49 permutations/s]
Permutation test:  56%|█████▋    | 5641/10000 [01:25<01:23, 52.26 permutations/s]
Permutation test:  56%|█████▋    | 5647/10000 [01:25<01:20, 54.22 permutations/s]
Permutation test:  57%|█████▋    | 5653/10000 [01:25<01:23, 52.35 permutations/s]
Permutation test:  57%|█████▋    | 5659/10000 [01:25<01:23, 51.69 permutations/s]
Permutation test:  57%|█████▋    | 5667/10000 [01:25<01:19, 54.63 permutations/s]
Permutation test:  57%|█████▋    | 5675/10000 [01:25<01:12, 59.37 permutations/s]
Permutation test:  57%|█████▋    | 5683/10000 [01:25<01:06, 64.77 permutations/s]
Permutation test:  57%|█████▋    | 5690/10000 [01:25<01:07, 63.39 permutations/s]
Permutation test:  57%|█████▋    | 5697/10000 [01:26<01:15, 56.62 permutations/s]
Permutation test:  57%|█████▋    | 5704/10000 [01:26<01:13, 58.19 permutations/s]
Permutation test:  57%|█████▋    | 5711/10000 [01:26<01:16, 56.15 permutations/s]
Permutation test:  57%|█████▋    | 5717/10000 [01:26<01:15, 57.11 permutations/s]
Permutation test:  57%|█████▋    | 5723/10000 [01:26<01:13, 57.86 permutations/s]
Permutation test:  57%|█████▋    | 5729/10000 [01:26<01:22, 51.68 permutations/s]
Permutation test:  57%|█████▋    | 5735/10000 [01:26<01:27, 48.68 permutations/s]
Permutation test:  57%|█████▋    | 5741/10000 [01:26<01:29, 47.77 permutations/s]
Permutation test:  57%|█████▋    | 5749/10000 [01:27<01:19, 53.63 permutations/s]
Permutation test:  58%|█████▊    | 5758/10000 [01:27<01:13, 57.65 permutations/s]
Permutation test:  58%|█████▊    | 5766/10000 [01:27<01:07, 62.47 permutations/s]
Permutation test:  58%|█████▊    | 5773/10000 [01:27<01:08, 61.85 permutations/s]
Permutation test:  58%|█████▊    | 5780/10000 [01:27<01:12, 58.41 permutations/s]
Permutation test:  58%|█████▊    | 5789/10000 [01:27<01:03, 65.90 permutations/s]
Permutation test:  58%|█████▊    | 5796/10000 [01:27<01:09, 60.48 permutations/s]
Permutation test:  58%|█████▊    | 5803/10000 [01:27<01:07, 62.30 permutations/s]
Permutation test:  58%|█████▊    | 5810/10000 [01:27<01:07, 62.43 permutations/s]
Permutation test:  58%|█████▊    | 5817/10000 [01:28<01:09, 59.94 permutations/s]
Permutation test:  58%|█████▊    | 5824/10000 [01:28<01:08, 60.83 permutations/s]
Permutation test:  58%|█████▊    | 5835/10000 [01:28<01:02, 66.76 permutations/s]
Permutation test:  58%|█████▊    | 5842/10000 [01:28<01:08, 60.76 permutations/s]
Permutation test:  58%|█████▊    | 5849/10000 [01:28<01:12, 57.39 permutations/s]
Permutation test:  59%|█████▊    | 5857/10000 [01:28<01:13, 56.22 permutations/s]
Permutation test:  59%|█████▊    | 5863/10000 [01:28<01:12, 56.71 permutations/s]
Permutation test:  59%|█████▊    | 5869/10000 [01:29<01:12, 56.92 permutations/s]
Permutation test:  59%|█████▉    | 5881/10000 [01:29<01:01, 66.47 permutations/s]
Permutation test:  59%|█████▉    | 5890/10000 [01:29<01:02, 65.76 permutations/s]
Permutation test:  59%|█████▉    | 5897/10000 [01:29<01:05, 62.36 permutations/s]
Permutation test:  59%|█████▉    | 5904/10000 [01:29<01:04, 63.16 permutations/s]
Permutation test:  59%|█████▉    | 5911/10000 [01:29<01:06, 61.59 permutations/s]
Permutation test:  59%|█████▉    | 5918/10000 [01:29<01:06, 61.83 permutations/s]
Permutation test:  59%|█████▉    | 5925/10000 [01:29<01:16, 52.97 permutations/s]
Permutation test:  59%|█████▉    | 5934/10000 [01:30<01:08, 59.39 permutations/s]
Permutation test:  59%|█████▉    | 5941/10000 [01:30<01:09, 58.67 permutations/s]
Permutation test:  59%|█████▉    | 5948/10000 [01:30<01:15, 53.82 permutations/s]
Permutation test:  60%|█████▉    | 5954/10000 [01:30<01:21, 49.70 permutations/s]
Permutation test:  60%|█████▉    | 5960/10000 [01:30<01:19, 51.09 permutations/s]
Permutation test:  60%|█████▉    | 5967/10000 [01:30<01:20, 50.33 permutations/s]
Permutation test:  60%|█████▉    | 5973/10000 [01:30<01:20, 50.21 permutations/s]
Permutation test:  60%|█████▉    | 5982/10000 [01:30<01:12, 55.45 permutations/s]
Permutation test:  60%|█████▉    | 5994/10000 [01:31<00:58, 69.06 permutations/s]
Permutation test:  60%|██████    | 6002/10000 [01:31<00:55, 71.40 permutations/s]
Permutation test:  60%|██████    | 6010/10000 [01:31<00:57, 69.00 permutations/s]
Permutation test:  60%|██████    | 6020/10000 [01:31<00:51, 76.89 permutations/s]
Permutation test:  60%|██████    | 6028/10000 [01:31<00:54, 73.00 permutations/s]
Permutation test:  60%|██████    | 6037/10000 [01:31<00:51, 77.38 permutations/s]
Permutation test:  60%|██████    | 6045/10000 [01:31<01:04, 61.77 permutations/s]
Permutation test:  61%|██████    | 6052/10000 [01:31<01:04, 61.66 permutations/s]
Permutation test:  61%|██████    | 6059/10000 [01:32<01:07, 58.23 permutations/s]
Permutation test:  61%|██████    | 6066/10000 [01:32<01:11, 54.84 permutations/s]
Permutation test:  61%|██████    | 6074/10000 [01:32<01:11, 55.08 permutations/s]
Permutation test:  61%|██████    | 6081/10000 [01:32<01:10, 55.94 permutations/s]
Permutation test:  61%|██████    | 6089/10000 [01:32<01:03, 61.26 permutations/s]
Permutation test:  61%|██████    | 6096/10000 [01:32<01:07, 57.46 permutations/s]
Permutation test:  61%|██████    | 6102/10000 [01:32<01:17, 50.19 permutations/s]
Permutation test:  61%|██████    | 6108/10000 [01:33<01:21, 47.52 permutations/s]
Permutation test:  61%|██████    | 6118/10000 [01:33<01:04, 59.73 permutations/s]
Permutation test:  61%|██████▏   | 6125/10000 [01:33<01:05, 58.93 permutations/s]
Permutation test:  61%|██████▏   | 6132/10000 [01:33<01:07, 57.00 permutations/s]
Permutation test:  61%|██████▏   | 6139/10000 [01:33<01:04, 59.61 permutations/s]
Permutation test:  61%|██████▏   | 6146/10000 [01:33<01:01, 62.30 permutations/s]
Permutation test:  62%|██████▏   | 6153/10000 [01:33<01:00, 64.05 permutations/s]
Permutation test:  62%|██████▏   | 6160/10000 [01:33<01:03, 60.65 permutations/s]
Permutation test:  62%|██████▏   | 6167/10000 [01:33<01:07, 56.58 permutations/s]
Permutation test:  62%|██████▏   | 6173/10000 [01:34<01:12, 52.63 permutations/s]
Permutation test:  62%|██████▏   | 6183/10000 [01:34<01:06, 57.07 permutations/s]
Permutation test:  62%|██████▏   | 6192/10000 [01:34<01:05, 58.24 permutations/s]
Permutation test:  62%|██████▏   | 6198/10000 [01:34<01:08, 55.44 permutations/s]
Permutation test:  62%|██████▏   | 6206/10000 [01:34<01:06, 56.80 permutations/s]
Permutation test:  62%|██████▏   | 6213/10000 [01:34<01:08, 55.39 permutations/s]
Permutation test:  62%|██████▏   | 6219/10000 [01:34<01:09, 54.02 permutations/s]
Permutation test:  62%|██████▏   | 6228/10000 [01:35<01:00, 62.74 permutations/s]
Permutation test:  62%|██████▏   | 6237/10000 [01:35<00:54, 68.45 permutations/s]
Permutation test:  62%|██████▏   | 6245/10000 [01:35<01:01, 61.11 permutations/s]
Permutation test:  63%|██████▎   | 6254/10000 [01:35<00:56, 66.27 permutations/s]
Permutation test:  63%|██████▎   | 6261/10000 [01:35<00:55, 67.20 permutations/s]
Permutation test:  63%|██████▎   | 6268/10000 [01:35<01:00, 61.96 permutations/s]
Permutation test:  63%|██████▎   | 6275/10000 [01:35<01:05, 56.51 permutations/s]
Permutation test:  63%|██████▎   | 6283/10000 [01:35<01:00, 61.02 permutations/s]
Permutation test:  63%|██████▎   | 6290/10000 [01:36<01:01, 60.35 permutations/s]
Permutation test:  63%|██████▎   | 6297/10000 [01:36<01:00, 60.87 permutations/s]
Permutation test:  63%|██████▎   | 6304/10000 [01:36<01:03, 58.44 permutations/s]
Permutation test:  63%|██████▎   | 6310/10000 [01:36<01:04, 57.52 permutations/s]
Permutation test:  63%|██████▎   | 6317/10000 [01:36<01:01, 59.58 permutations/s]
Permutation test:  63%|██████▎   | 6324/10000 [01:36<01:03, 57.54 permutations/s]
Permutation test:  63%|██████▎   | 6331/10000 [01:36<01:07, 54.50 permutations/s]
Permutation test:  63%|██████▎   | 6337/10000 [01:36<01:05, 55.79 permutations/s]
Permutation test:  63%|██████▎   | 6344/10000 [01:36<01:02, 58.92 permutations/s]
Permutation test:  64%|██████▎   | 6352/10000 [01:37<00:58, 62.01 permutations/s]
Permutation test:  64%|██████▎   | 6364/10000 [01:37<00:49, 73.87 permutations/s]
Permutation test:  64%|██████▎   | 6372/10000 [01:37<00:51, 69.96 permutations/s]
Permutation test:  64%|██████▍   | 6380/10000 [01:37<00:57, 62.77 permutations/s]
Permutation test:  64%|██████▍   | 6387/10000 [01:37<01:01, 58.91 permutations/s]
Permutation test:  64%|██████▍   | 6394/10000 [01:37<01:05, 55.22 permutations/s]
Permutation test:  64%|██████▍   | 6400/10000 [01:37<01:10, 51.33 permutations/s]
Permutation test:  64%|██████▍   | 6406/10000 [01:38<01:10, 50.94 permutations/s]
Permutation test:  64%|██████▍   | 6414/10000 [01:38<01:02, 57.51 permutations/s]
Permutation test:  64%|██████▍   | 6423/10000 [01:38<01:00, 58.74 permutations/s]
Permutation test:  64%|██████▍   | 6429/10000 [01:38<01:02, 56.69 permutations/s]
Permutation test:  64%|██████▍   | 6435/10000 [01:38<01:06, 53.33 permutations/s]
Permutation test:  64%|██████▍   | 6444/10000 [01:38<01:02, 56.66 permutations/s]
Permutation test:  64%|██████▍   | 6450/10000 [01:38<01:08, 51.97 permutations/s]
Permutation test:  65%|██████▍   | 6456/10000 [01:38<01:06, 53.47 permutations/s]
Permutation test:  65%|██████▍   | 6462/10000 [01:39<01:04, 54.48 permutations/s]
Permutation test:  65%|██████▍   | 6468/10000 [01:39<01:04, 54.35 permutations/s]
Permutation test:  65%|██████▍   | 6476/10000 [01:39<01:00, 58.59 permutations/s]
Permutation test:  65%|██████▍   | 6485/10000 [01:39<00:54, 64.26 permutations/s]
Permutation test:  65%|██████▍   | 6492/10000 [01:39<00:56, 62.43 permutations/s]
Permutation test:  65%|██████▍   | 6499/10000 [01:39<01:00, 57.76 permutations/s]
Permutation test:  65%|██████▌   | 6509/10000 [01:39<00:52, 67.00 permutations/s]
Permutation test:  65%|██████▌   | 6516/10000 [01:39<00:56, 61.42 permutations/s]
Permutation test:  65%|██████▌   | 6523/10000 [01:40<00:59, 58.21 permutations/s]
Permutation test:  65%|██████▌   | 6532/10000 [01:40<00:53, 64.84 permutations/s]
Permutation test:  65%|██████▌   | 6540/10000 [01:40<00:54, 63.03 permutations/s]
Permutation test:  65%|██████▌   | 6548/10000 [01:40<00:57, 60.52 permutations/s]
Permutation test:  66%|██████▌   | 6555/10000 [01:40<00:59, 58.25 permutations/s]
Permutation test:  66%|██████▌   | 6561/10000 [01:40<00:59, 57.56 permutations/s]
Permutation test:  66%|██████▌   | 6567/10000 [01:40<00:59, 58.17 permutations/s]
Permutation test:  66%|██████▌   | 6575/10000 [01:40<00:55, 61.93 permutations/s]
Permutation test:  66%|██████▌   | 6583/10000 [01:40<00:51, 66.08 permutations/s]
Permutation test:  66%|██████▌   | 6590/10000 [01:41<00:56, 60.69 permutations/s]
Permutation test:  66%|██████▌   | 6601/10000 [01:41<00:52, 64.19 permutations/s]
Permutation test:  66%|██████▌   | 6612/10000 [01:41<00:48, 70.58 permutations/s]
Permutation test:  66%|██████▌   | 6620/10000 [01:41<00:49, 68.11 permutations/s]
Permutation test:  66%|██████▋   | 6627/10000 [01:41<00:51, 65.86 permutations/s]
Permutation test:  66%|██████▋   | 6638/10000 [01:41<00:44, 74.92 permutations/s]
Permutation test:  66%|██████▋   | 6646/10000 [01:41<00:49, 67.21 permutations/s]
Permutation test:  67%|██████▋   | 6653/10000 [01:42<00:53, 62.24 permutations/s]
Permutation test:  67%|██████▋   | 6660/10000 [01:42<01:02, 53.25 permutations/s]
Permutation test:  67%|██████▋   | 6666/10000 [01:42<01:04, 51.51 permutations/s]
Permutation test:  67%|██████▋   | 6672/10000 [01:42<01:06, 49.77 permutations/s]
Permutation test:  67%|██████▋   | 6679/10000 [01:42<01:07, 49.49 permutations/s]
Permutation test:  67%|██████▋   | 6685/10000 [01:42<01:06, 50.09 permutations/s]
Permutation test:  67%|██████▋   | 6691/10000 [01:42<01:08, 48.25 permutations/s]
Permutation test:  67%|██████▋   | 6697/10000 [01:43<01:09, 47.86 permutations/s]
Permutation test:  67%|██████▋   | 6705/10000 [01:43<00:59, 55.20 permutations/s]
Permutation test:  67%|██████▋   | 6711/10000 [01:43<01:00, 54.80 permutations/s]
Permutation test:  67%|██████▋   | 6718/10000 [01:43<00:56, 58.13 permutations/s]
Permutation test:  67%|██████▋   | 6726/10000 [01:43<00:55, 59.49 permutations/s]
Permutation test:  67%|██████▋   | 6735/10000 [01:43<00:48, 66.79 permutations/s]
Permutation test:  67%|██████▋   | 6742/10000 [01:43<00:54, 59.99 permutations/s]
Permutation test:  68%|██████▊   | 6750/10000 [01:43<00:51, 63.03 permutations/s]
Permutation test:  68%|██████▊   | 6762/10000 [01:43<00:43, 74.80 permutations/s]
Permutation test:  68%|██████▊   | 6770/10000 [01:44<00:49, 65.83 permutations/s]
Permutation test:  68%|██████▊   | 6777/10000 [01:44<00:49, 64.95 permutations/s]
Permutation test:  68%|██████▊   | 6784/10000 [01:44<00:56, 57.38 permutations/s]
Permutation test:  68%|██████▊   | 6790/10000 [01:44<01:02, 51.64 permutations/s]
Permutation test:  68%|██████▊   | 6796/10000 [01:44<01:04, 49.79 permutations/s]
Permutation test:  68%|██████▊   | 6802/10000 [01:44<01:04, 49.87 permutations/s]
Permutation test:  68%|██████▊   | 6808/10000 [01:44<01:02, 50.92 permutations/s]
Permutation test:  68%|██████▊   | 6814/10000 [01:45<01:01, 52.22 permutations/s]
Permutation test:  68%|██████▊   | 6826/10000 [01:45<00:45, 69.42 permutations/s]
Permutation test:  68%|██████▊   | 6834/10000 [01:45<00:47, 67.00 permutations/s]
Permutation test:  68%|██████▊   | 6841/10000 [01:45<00:52, 60.74 permutations/s]
Permutation test:  68%|██████▊   | 6849/10000 [01:45<00:48, 65.43 permutations/s]
Permutation test:  69%|██████▊   | 6856/10000 [01:45<00:48, 64.73 permutations/s]
Permutation test:  69%|██████▊   | 6863/10000 [01:45<00:53, 59.03 permutations/s]
Permutation test:  69%|██████▊   | 6870/10000 [01:45<00:53, 58.35 permutations/s]
Permutation test:  69%|██████▉   | 6876/10000 [01:45<00:55, 55.93 permutations/s]
Permutation test:  69%|██████▉   | 6882/10000 [01:46<00:55, 55.77 permutations/s]
Permutation test:  69%|██████▉   | 6888/10000 [01:46<00:59, 51.94 permutations/s]
Permutation test:  69%|██████▉   | 6894/10000 [01:46<01:01, 50.83 permutations/s]
Permutation test:  69%|██████▉   | 6900/10000 [01:46<01:00, 51.16 permutations/s]
Permutation test:  69%|██████▉   | 6906/10000 [01:46<01:03, 48.81 permutations/s]
Permutation test:  69%|██████▉   | 6911/10000 [01:46<01:08, 45.02 permutations/s]
Permutation test:  69%|██████▉   | 6916/10000 [01:46<01:08, 44.87 permutations/s]
Permutation test:  69%|██████▉   | 6921/10000 [01:46<01:10, 43.53 permutations/s]
Permutation test:  69%|██████▉   | 6928/10000 [01:47<01:02, 49.32 permutations/s]
Permutation test:  69%|██████▉   | 6935/10000 [01:47<00:58, 52.16 permutations/s]
Permutation test:  69%|██████▉   | 6941/10000 [01:47<00:56, 54.15 permutations/s]
Permutation test:  69%|██████▉   | 6949/10000 [01:47<00:50, 59.99 permutations/s]
Permutation test:  70%|██████▉   | 6960/10000 [01:47<00:42, 70.77 permutations/s]
Permutation test:  70%|██████▉   | 6969/10000 [01:47<00:45, 67.12 permutations/s]
Permutation test:  70%|██████▉   | 6976/10000 [01:47<00:46, 65.07 permutations/s]
Permutation test:  70%|██████▉   | 6983/10000 [01:47<00:45, 65.64 permutations/s]
Permutation test:  70%|██████▉   | 6992/10000 [01:48<00:47, 63.37 permutations/s]
Permutation test:  70%|██████▉   | 6999/10000 [01:48<00:48, 62.05 permutations/s]
Permutation test:  70%|███████   | 7008/10000 [01:48<00:43, 69.09 permutations/s]
Permutation test:  70%|███████   | 7016/10000 [01:48<00:48, 62.01 permutations/s]
Permutation test:  70%|███████   | 7023/10000 [01:48<00:54, 54.40 permutations/s]
Permutation test:  70%|███████   | 7029/10000 [01:48<00:56, 52.20 permutations/s]
Permutation test:  70%|███████   | 7035/10000 [01:48<00:58, 50.71 permutations/s]
Permutation test:  70%|███████   | 7041/10000 [01:48<00:58, 50.60 permutations/s]
Permutation test:  70%|███████   | 7050/10000 [01:49<00:51, 57.57 permutations/s]
Permutation test:  71%|███████   | 7058/10000 [01:49<00:47, 62.13 permutations/s]
Permutation test:  71%|███████   | 7065/10000 [01:49<00:51, 57.50 permutations/s]
Permutation test:  71%|███████   | 7071/10000 [01:49<00:50, 57.91 permutations/s]
Permutation test:  71%|███████   | 7082/10000 [01:49<00:44, 64.88 permutations/s]
Permutation test:  71%|███████   | 7089/10000 [01:49<00:45, 64.52 permutations/s]
Permutation test:  71%|███████   | 7096/10000 [01:49<00:49, 58.10 permutations/s]
Permutation test:  71%|███████   | 7103/10000 [01:49<00:49, 58.90 permutations/s]
Permutation test:  71%|███████   | 7109/10000 [01:50<00:52, 54.65 permutations/s]
Permutation test:  71%|███████   | 7115/10000 [01:50<00:52, 54.97 permutations/s]
Permutation test:  71%|███████   | 7122/10000 [01:50<00:53, 53.95 permutations/s]
Permutation test:  71%|███████▏  | 7128/10000 [01:50<00:54, 52.65 permutations/s]
Permutation test:  71%|███████▏  | 7134/10000 [01:50<00:52, 54.54 permutations/s]
Permutation test:  71%|███████▏  | 7140/10000 [01:50<00:51, 55.73 permutations/s]
Permutation test:  71%|███████▏  | 7146/10000 [01:50<00:53, 53.11 permutations/s]
Permutation test:  72%|███████▏  | 7154/10000 [01:50<00:52, 54.47 permutations/s]
Permutation test:  72%|███████▏  | 7161/10000 [01:51<00:50, 56.66 permutations/s]
Permutation test:  72%|███████▏  | 7168/10000 [01:51<00:48, 58.50 permutations/s]
Permutation test:  72%|███████▏  | 7176/10000 [01:51<00:48, 57.85 permutations/s]
Permutation test:  72%|███████▏  | 7186/10000 [01:51<00:44, 63.59 permutations/s]
Permutation test:  72%|███████▏  | 7193/10000 [01:51<00:44, 62.75 permutations/s]
Permutation test:  72%|███████▏  | 7200/10000 [01:51<00:44, 63.05 permutations/s]
Permutation test:  72%|███████▏  | 7208/10000 [01:51<00:42, 65.55 permutations/s]
Permutation test:  72%|███████▏  | 7215/10000 [01:51<00:48, 57.03 permutations/s]
Permutation test:  72%|███████▏  | 7222/10000 [01:52<00:47, 57.97 permutations/s]
Permutation test:  72%|███████▏  | 7229/10000 [01:52<00:47, 58.58 permutations/s]
Permutation test:  72%|███████▏  | 7237/10000 [01:52<00:43, 63.99 permutations/s]
Permutation test:  72%|███████▏  | 7245/10000 [01:52<00:40, 67.70 permutations/s]
Permutation test:  73%|███████▎  | 7252/10000 [01:52<00:45, 60.96 permutations/s]
Permutation test:  73%|███████▎  | 7259/10000 [01:52<00:49, 55.22 permutations/s]
Permutation test:  73%|███████▎  | 7265/10000 [01:52<00:50, 54.29 permutations/s]
Permutation test:  73%|███████▎  | 7272/10000 [01:52<00:46, 58.20 permutations/s]
Permutation test:  73%|███████▎  | 7278/10000 [01:52<00:48, 56.30 permutations/s]
Permutation test:  73%|███████▎  | 7287/10000 [01:53<00:42, 63.24 permutations/s]
Permutation test:  73%|███████▎  | 7296/10000 [01:53<00:38, 70.29 permutations/s]
Permutation test:  73%|███████▎  | 7304/10000 [01:53<00:42, 62.73 permutations/s]
Permutation test:  73%|███████▎  | 7311/10000 [01:53<00:42, 62.63 permutations/s]
Permutation test:  73%|███████▎  | 7318/10000 [01:53<00:44, 60.21 permutations/s]
Permutation test:  73%|███████▎  | 7325/10000 [01:53<00:46, 56.99 permutations/s]
Permutation test:  73%|███████▎  | 7331/10000 [01:53<00:50, 53.31 permutations/s]
Permutation test:  73%|███████▎  | 7338/10000 [01:53<00:47, 55.81 permutations/s]
Permutation test:  73%|███████▎  | 7346/10000 [01:54<00:45, 57.91 permutations/s]
Permutation test:  74%|███████▎  | 7354/10000 [01:54<00:42, 62.97 permutations/s]
Permutation test:  74%|███████▎  | 7361/10000 [01:54<00:45, 57.85 permutations/s]
Permutation test:  74%|███████▎  | 7368/10000 [01:54<00:47, 54.93 permutations/s]
Permutation test:  74%|███████▎  | 7374/10000 [01:54<00:49, 52.59 permutations/s]
Permutation test:  74%|███████▍  | 7382/10000 [01:54<00:47, 55.06 permutations/s]
Permutation test:  74%|███████▍  | 7388/10000 [01:54<00:50, 52.21 permutations/s]
Permutation test:  74%|███████▍  | 7394/10000 [01:55<00:50, 51.75 permutations/s]
Permutation test:  74%|███████▍  | 7402/10000 [01:55<00:47, 55.27 permutations/s]
Permutation test:  74%|███████▍  | 7409/10000 [01:55<00:47, 55.09 permutations/s]
Permutation test:  74%|███████▍  | 7417/10000 [01:55<00:43, 60.02 permutations/s]
Permutation test:  74%|███████▍  | 7424/10000 [01:55<00:41, 61.61 permutations/s]
Permutation test:  74%|███████▍  | 7431/10000 [01:55<00:44, 57.45 permutations/s]
Permutation test:  74%|███████▍  | 7438/10000 [01:55<00:43, 59.46 permutations/s]
Permutation test:  74%|███████▍  | 7445/10000 [01:55<00:50, 50.16 permutations/s]
Permutation test:  75%|███████▍  | 7456/10000 [01:56<00:39, 63.99 permutations/s]
Permutation test:  75%|███████▍  | 7463/10000 [01:56<00:41, 61.79 permutations/s]
Permutation test:  75%|███████▍  | 7470/10000 [01:56<00:43, 58.60 permutations/s]
Permutation test:  75%|███████▍  | 7477/10000 [01:56<00:42, 59.02 permutations/s]
Permutation test:  75%|███████▍  | 7486/10000 [01:56<00:41, 61.29 permutations/s]
Permutation test:  75%|███████▍  | 7493/10000 [01:56<00:45, 55.69 permutations/s]
Permutation test:  75%|███████▍  | 7499/10000 [01:56<00:46, 54.14 permutations/s]
Permutation test:  75%|███████▌  | 7506/10000 [01:56<00:47, 52.46 permutations/s]
Permutation test:  75%|███████▌  | 7512/10000 [01:57<00:51, 48.15 permutations/s]
Permutation test:  75%|███████▌  | 7522/10000 [01:57<00:41, 59.18 permutations/s]
Permutation test:  75%|███████▌  | 7529/10000 [01:57<00:43, 57.38 permutations/s]
Permutation test:  75%|███████▌  | 7540/10000 [01:57<00:38, 64.11 permutations/s]
Permutation test:  75%|███████▌  | 7547/10000 [01:57<00:39, 61.79 permutations/s]
Permutation test:  76%|███████▌  | 7554/10000 [01:57<00:43, 56.59 permutations/s]
Permutation test:  76%|███████▌  | 7560/10000 [01:57<00:45, 53.78 permutations/s]
Permutation test:  76%|███████▌  | 7567/10000 [01:58<00:44, 55.16 permutations/s]
Permutation test:  76%|███████▌  | 7573/10000 [01:58<00:45, 53.15 permutations/s]
Permutation test:  76%|███████▌  | 7579/10000 [01:58<00:44, 54.43 permutations/s]
Permutation test:  76%|███████▌  | 7585/10000 [01:58<00:43, 55.74 permutations/s]
Permutation test:  76%|███████▌  | 7591/10000 [01:58<00:46, 51.32 permutations/s]
Permutation test:  76%|███████▌  | 7598/10000 [01:58<00:43, 55.55 permutations/s]
Permutation test:  76%|███████▌  | 7607/10000 [01:58<00:36, 64.69 permutations/s]
Permutation test:  76%|███████▌  | 7615/10000 [01:58<00:38, 62.70 permutations/s]
Permutation test:  76%|███████▌  | 7622/10000 [01:58<00:41, 57.52 permutations/s]
Permutation test:  76%|███████▋  | 7628/10000 [01:59<00:42, 55.30 permutations/s]
Permutation test:  76%|███████▋  | 7638/10000 [01:59<00:35, 66.59 permutations/s]
Permutation test:  76%|███████▋  | 7648/10000 [01:59<00:35, 67.09 permutations/s]
Permutation test:  77%|███████▋  | 7655/10000 [01:59<00:38, 60.33 permutations/s]
Permutation test:  77%|███████▋  | 7662/10000 [01:59<00:39, 59.18 permutations/s]
Permutation test:  77%|███████▋  | 7669/10000 [01:59<00:42, 55.47 permutations/s]
Permutation test:  77%|███████▋  | 7676/10000 [01:59<00:40, 57.76 permutations/s]
Permutation test:  77%|███████▋  | 7683/10000 [01:59<00:38, 60.72 permutations/s]
Permutation test:  77%|███████▋  | 7690/10000 [02:00<00:43, 52.63 permutations/s]
Permutation test:  77%|███████▋  | 7696/10000 [02:00<00:43, 53.42 permutations/s]
Permutation test:  77%|███████▋  | 7704/10000 [02:00<00:42, 54.20 permutations/s]
Permutation test:  77%|███████▋  | 7712/10000 [02:00<00:37, 60.45 permutations/s]
Permutation test:  77%|███████▋  | 7719/10000 [02:00<00:41, 55.05 permutations/s]
Permutation test:  77%|███████▋  | 7727/10000 [02:00<00:41, 54.66 permutations/s]
Permutation test:  77%|███████▋  | 7733/10000 [02:00<00:41, 54.89 permutations/s]
Permutation test:  77%|███████▋  | 7741/10000 [02:01<00:36, 61.13 permutations/s]
Permutation test:  77%|███████▋  | 7748/10000 [02:01<00:36, 61.74 permutations/s]
Permutation test:  78%|███████▊  | 7757/10000 [02:01<00:33, 67.24 permutations/s]
Permutation test:  78%|███████▊  | 7764/10000 [02:01<00:36, 61.79 permutations/s]
Permutation test:  78%|███████▊  | 7772/10000 [02:01<00:34, 65.17 permutations/s]
Permutation test:  78%|███████▊  | 7782/10000 [02:01<00:29, 74.29 permutations/s]
Permutation test:  78%|███████▊  | 7791/10000 [02:01<00:30, 71.68 permutations/s]
Permutation test:  78%|███████▊  | 7799/10000 [02:01<00:39, 56.11 permutations/s]
Permutation test:  78%|███████▊  | 7806/10000 [02:02<00:44, 49.45 permutations/s]
Permutation test:  78%|███████▊  | 7812/10000 [02:02<00:48, 44.91 permutations/s]
Permutation test:  78%|███████▊  | 7817/10000 [02:02<00:50, 42.88 permutations/s]
Permutation test:  78%|███████▊  | 7822/10000 [02:02<00:54, 40.16 permutations/s]
Permutation test:  78%|███████▊  | 7827/10000 [02:02<00:54, 40.20 permutations/s]
Permutation test:  78%|███████▊  | 7832/10000 [02:02<00:58, 37.04 permutations/s]
Permutation test:  78%|███████▊  | 7836/10000 [02:02<00:58, 36.70 permutations/s]
Permutation test:  78%|███████▊  | 7840/10000 [02:03<00:59, 36.38 permutations/s]
Permutation test:  78%|███████▊  | 7844/10000 [02:03<00:59, 36.30 permutations/s]
Permutation test:  78%|███████▊  | 7848/10000 [02:03<01:00, 35.80 permutations/s]
Permutation test:  79%|███████▊  | 7852/10000 [02:03<00:59, 36.11 permutations/s]
Permutation test:  79%|███████▊  | 7856/10000 [02:03<00:58, 36.75 permutations/s]
Permutation test:  79%|███████▊  | 7860/10000 [02:03<00:57, 37.26 permutations/s]
Permutation test:  79%|███████▊  | 7864/10000 [02:03<00:57, 37.20 permutations/s]
Permutation test:  79%|███████▊  | 7868/10000 [02:03<00:57, 37.10 permutations/s]
Permutation test:  79%|███████▊  | 7872/10000 [02:03<00:56, 37.50 permutations/s]
Permutation test:  79%|███████▉  | 7876/10000 [02:04<00:58, 36.17 permutations/s]
Permutation test:  79%|███████▉  | 7880/10000 [02:04<00:56, 37.20 permutations/s]
Permutation test:  79%|███████▉  | 7884/10000 [02:04<00:57, 36.80 permutations/s]
Permutation test:  79%|███████▉  | 7888/10000 [02:04<00:57, 36.74 permutations/s]
Permutation test:  79%|███████▉  | 7892/10000 [02:04<00:58, 36.07 permutations/s]
Permutation test:  79%|███████▉  | 7896/10000 [02:04<00:59, 35.65 permutations/s]
Permutation test:  79%|███████▉  | 7900/10000 [02:04<00:59, 35.56 permutations/s]
Permutation test:  79%|███████▉  | 7904/10000 [02:04<00:58, 35.61 permutations/s]
Permutation test:  79%|███████▉  | 7908/10000 [02:04<00:57, 36.42 permutations/s]
Permutation test:  79%|███████▉  | 7912/10000 [02:05<00:56, 37.14 permutations/s]
Permutation test:  79%|███████▉  | 7917/10000 [02:05<00:57, 36.22 permutations/s]
Permutation test:  79%|███████▉  | 7921/10000 [02:05<01:00, 34.64 permutations/s]
Permutation test:  79%|███████▉  | 7925/10000 [02:05<00:58, 35.34 permutations/s]
Permutation test:  79%|███████▉  | 7929/10000 [02:05<00:57, 35.82 permutations/s]
Permutation test:  79%|███████▉  | 7933/10000 [02:05<00:57, 36.18 permutations/s]
Permutation test:  79%|███████▉  | 7937/10000 [02:05<00:56, 36.31 permutations/s]
Permutation test:  79%|███████▉  | 7941/10000 [02:05<00:56, 36.21 permutations/s]
Permutation test:  79%|███████▉  | 7945/10000 [02:05<00:58, 35.28 permutations/s]
Permutation test:  79%|███████▉  | 7949/10000 [02:06<00:57, 35.43 permutations/s]
Permutation test:  80%|███████▉  | 7953/10000 [02:06<00:56, 36.32 permutations/s]
Permutation test:  80%|███████▉  | 7957/10000 [02:06<00:58, 35.01 permutations/s]
Permutation test:  80%|███████▉  | 7961/10000 [02:06<00:57, 35.59 permutations/s]
Permutation test:  80%|███████▉  | 7965/10000 [02:06<00:57, 35.61 permutations/s]
Permutation test:  80%|███████▉  | 7969/10000 [02:06<00:57, 35.26 permutations/s]
Permutation test:  80%|███████▉  | 7973/10000 [02:06<00:57, 35.37 permutations/s]
Permutation test:  80%|███████▉  | 7977/10000 [02:06<00:56, 35.87 permutations/s]
Permutation test:  80%|███████▉  | 7981/10000 [02:06<00:56, 35.86 permutations/s]
Permutation test:  80%|███████▉  | 7985/10000 [02:07<00:56, 35.72 permutations/s]
Permutation test:  80%|███████▉  | 7990/10000 [02:07<00:55, 36.52 permutations/s]
Permutation test:  80%|███████▉  | 7994/10000 [02:07<00:55, 36.29 permutations/s]
Permutation test:  80%|███████▉  | 7998/10000 [02:07<00:56, 35.73 permutations/s]
Permutation test:  80%|████████  | 8002/10000 [02:07<00:57, 35.02 permutations/s]
Permutation test:  80%|████████  | 8006/10000 [02:07<00:56, 35.18 permutations/s]
Permutation test:  80%|████████  | 8010/10000 [02:07<00:55, 35.61 permutations/s]
Permutation test:  80%|████████  | 8014/10000 [02:07<00:56, 35.37 permutations/s]
Permutation test:  80%|████████  | 8019/10000 [02:08<00:53, 37.34 permutations/s]
Permutation test:  80%|████████  | 8023/10000 [02:08<00:54, 36.49 permutations/s]
Permutation test:  80%|████████  | 8027/10000 [02:08<00:53, 36.67 permutations/s]
Permutation test:  80%|████████  | 8031/10000 [02:08<00:53, 36.76 permutations/s]
Permutation test:  80%|████████  | 8035/10000 [02:08<00:54, 36.07 permutations/s]
Permutation test:  80%|████████  | 8039/10000 [02:08<00:53, 36.36 permutations/s]
Permutation test:  80%|████████  | 8043/10000 [02:08<00:55, 35.36 permutations/s]
Permutation test:  80%|████████  | 8047/10000 [02:08<00:55, 35.13 permutations/s]
Permutation test:  81%|████████  | 8052/10000 [02:08<00:56, 34.65 permutations/s]
Permutation test:  81%|████████  | 8056/10000 [02:09<00:55, 34.92 permutations/s]
Permutation test:  81%|████████  | 8060/10000 [02:09<00:54, 35.49 permutations/s]
Permutation test:  81%|████████  | 8065/10000 [02:09<00:53, 35.92 permutations/s]
Permutation test:  81%|████████  | 8069/10000 [02:09<00:54, 35.19 permutations/s]
Permutation test:  81%|████████  | 8073/10000 [02:09<00:55, 34.62 permutations/s]
Permutation test:  81%|████████  | 8077/10000 [02:09<00:55, 34.96 permutations/s]
Permutation test:  81%|████████  | 8081/10000 [02:09<00:54, 35.11 permutations/s]
Permutation test:  81%|████████  | 8085/10000 [02:09<00:54, 35.34 permutations/s]
Permutation test:  81%|████████  | 8089/10000 [02:10<00:52, 36.19 permutations/s]
Permutation test:  81%|████████  | 8093/10000 [02:10<00:52, 36.40 permutations/s]
Permutation test:  81%|████████  | 8097/10000 [02:10<00:52, 36.20 permutations/s]
Permutation test:  81%|████████  | 8101/10000 [02:10<00:53, 35.74 permutations/s]
Permutation test:  81%|████████  | 8105/10000 [02:10<00:53, 35.66 permutations/s]
Permutation test:  81%|████████  | 8109/10000 [02:10<00:54, 34.94 permutations/s]
Permutation test:  81%|████████  | 8113/10000 [02:10<00:52, 35.88 permutations/s]
Permutation test:  81%|████████  | 8117/10000 [02:10<00:52, 35.88 permutations/s]
Permutation test:  81%|████████  | 8121/10000 [02:10<00:51, 36.66 permutations/s]
Permutation test:  81%|████████▏ | 8125/10000 [02:11<00:50, 37.17 permutations/s]
Permutation test:  81%|████████▏ | 8129/10000 [02:11<00:51, 36.30 permutations/s]
Permutation test:  81%|████████▏ | 8133/10000 [02:11<00:51, 36.54 permutations/s]
Permutation test:  81%|████████▏ | 8137/10000 [02:11<00:51, 36.32 permutations/s]
Permutation test:  81%|████████▏ | 8141/10000 [02:11<00:51, 36.06 permutations/s]
Permutation test:  81%|████████▏ | 8145/10000 [02:11<00:50, 36.79 permutations/s]
Permutation test:  81%|████████▏ | 8149/10000 [02:11<00:51, 35.71 permutations/s]
Permutation test:  82%|████████▏ | 8153/10000 [02:11<00:51, 35.67 permutations/s]
Permutation test:  82%|████████▏ | 8157/10000 [02:11<00:51, 35.69 permutations/s]
Permutation test:  82%|████████▏ | 8161/10000 [02:12<00:52, 35.29 permutations/s]
Permutation test:  82%|████████▏ | 8165/10000 [02:12<00:51, 35.80 permutations/s]
Permutation test:  82%|████████▏ | 8169/10000 [02:12<00:50, 36.61 permutations/s]
Permutation test:  82%|████████▏ | 8173/10000 [02:12<00:52, 35.13 permutations/s]
Permutation test:  82%|████████▏ | 8177/10000 [02:12<00:50, 36.10 permutations/s]
Permutation test:  82%|████████▏ | 8181/10000 [02:12<00:51, 35.64 permutations/s]
Permutation test:  82%|████████▏ | 8185/10000 [02:12<00:51, 35.29 permutations/s]
Permutation test:  82%|████████▏ | 8189/10000 [02:12<00:50, 35.72 permutations/s]
Permutation test:  82%|████████▏ | 8194/10000 [02:12<00:47, 38.34 permutations/s]
Permutation test:  82%|████████▏ | 8198/10000 [02:13<00:47, 38.10 permutations/s]
Permutation test:  82%|████████▏ | 8202/10000 [02:13<00:49, 36.04 permutations/s]
Permutation test:  82%|████████▏ | 8206/10000 [02:13<00:49, 36.10 permutations/s]
Permutation test:  82%|████████▏ | 8210/10000 [02:13<00:49, 36.37 permutations/s]
Permutation test:  82%|████████▏ | 8214/10000 [02:13<00:49, 35.76 permutations/s]
Permutation test:  82%|████████▏ | 8218/10000 [02:13<00:48, 36.57 permutations/s]
Permutation test:  82%|████████▏ | 8222/10000 [02:13<00:49, 35.88 permutations/s]
Permutation test:  82%|████████▏ | 8226/10000 [02:13<00:49, 35.85 permutations/s]
Permutation test:  82%|████████▏ | 8230/10000 [02:13<00:49, 35.42 permutations/s]
Permutation test:  82%|████████▏ | 8234/10000 [02:14<00:48, 36.27 permutations/s]
Permutation test:  82%|████████▏ | 8238/10000 [02:14<00:49, 35.31 permutations/s]
Permutation test:  82%|████████▏ | 8242/10000 [02:14<00:49, 35.84 permutations/s]
Permutation test:  82%|████████▏ | 8246/10000 [02:14<00:48, 36.19 permutations/s]
Permutation test:  82%|████████▎ | 8250/10000 [02:14<00:49, 35.62 permutations/s]
Permutation test:  83%|████████▎ | 8254/10000 [02:14<00:49, 35.32 permutations/s]
Permutation test:  83%|████████▎ | 8258/10000 [02:14<00:49, 35.46 permutations/s]
Permutation test:  83%|████████▎ | 8262/10000 [02:14<00:48, 35.49 permutations/s]
Permutation test:  83%|████████▎ | 8266/10000 [02:14<00:50, 34.45 permutations/s]
Permutation test:  83%|████████▎ | 8271/10000 [02:15<00:47, 36.30 permutations/s]
Permutation test:  83%|████████▎ | 8276/10000 [02:15<00:46, 36.82 permutations/s]
Permutation test:  83%|████████▎ | 8280/10000 [02:15<00:47, 36.47 permutations/s]
Permutation test:  83%|████████▎ | 8284/10000 [02:15<00:46, 36.67 permutations/s]
Permutation test:  83%|████████▎ | 8288/10000 [02:15<00:47, 36.00 permutations/s]
Permutation test:  83%|████████▎ | 8293/10000 [02:15<00:44, 38.57 permutations/s]
Permutation test:  83%|████████▎ | 8297/10000 [02:15<00:45, 37.61 permutations/s]
Permutation test:  83%|████████▎ | 8301/10000 [02:15<00:46, 36.92 permutations/s]
Permutation test:  83%|████████▎ | 8305/10000 [02:16<00:48, 34.84 permutations/s]
Permutation test:  83%|████████▎ | 8309/10000 [02:16<00:47, 35.56 permutations/s]
Permutation test:  83%|████████▎ | 8313/10000 [02:16<00:48, 34.86 permutations/s]
Permutation test:  83%|████████▎ | 8317/10000 [02:16<00:47, 35.51 permutations/s]
Permutation test:  83%|████████▎ | 8321/10000 [02:16<00:47, 35.59 permutations/s]
Permutation test:  83%|████████▎ | 8325/10000 [02:16<00:46, 35.96 permutations/s]
Permutation test:  83%|████████▎ | 8329/10000 [02:16<00:46, 36.18 permutations/s]
Permutation test:  83%|████████▎ | 8333/10000 [02:16<00:46, 35.66 permutations/s]
Permutation test:  83%|████████▎ | 8337/10000 [02:16<00:48, 34.57 permutations/s]
Permutation test:  83%|████████▎ | 8341/10000 [02:17<00:48, 34.37 permutations/s]
Permutation test:  83%|████████▎ | 8345/10000 [02:17<00:46, 35.45 permutations/s]
Permutation test:  83%|████████▎ | 8349/10000 [02:17<00:50, 32.68 permutations/s]
Permutation test:  84%|████████▎ | 8353/10000 [02:17<00:48, 33.72 permutations/s]
Permutation test:  84%|████████▎ | 8357/10000 [02:17<00:46, 35.18 permutations/s]
Permutation test:  84%|████████▎ | 8362/10000 [02:17<00:46, 35.59 permutations/s]
Permutation test:  84%|████████▎ | 8366/10000 [02:17<00:45, 36.18 permutations/s]
Permutation test:  84%|████████▎ | 8370/10000 [02:17<00:44, 36.41 permutations/s]
Permutation test:  84%|████████▎ | 8374/10000 [02:17<00:45, 35.78 permutations/s]
Permutation test:  84%|████████▍ | 8379/10000 [02:18<00:43, 37.23 permutations/s]
Permutation test:  84%|████████▍ | 8383/10000 [02:18<00:44, 36.39 permutations/s]
Permutation test:  84%|████████▍ | 8387/10000 [02:18<00:44, 36.63 permutations/s]
Permutation test:  84%|████████▍ | 8391/10000 [02:18<00:44, 36.32 permutations/s]
Permutation test:  84%|████████▍ | 8395/10000 [02:18<00:44, 36.17 permutations/s]
Permutation test:  84%|████████▍ | 8399/10000 [02:18<00:44, 36.04 permutations/s]
Permutation test:  84%|████████▍ | 8403/10000 [02:18<00:44, 35.89 permutations/s]
Permutation test:  84%|████████▍ | 8407/10000 [02:18<00:43, 36.26 permutations/s]
Permutation test:  84%|████████▍ | 8411/10000 [02:18<00:44, 36.08 permutations/s]
Permutation test:  84%|████████▍ | 8415/10000 [02:19<00:44, 35.97 permutations/s]
Permutation test:  84%|████████▍ | 8419/10000 [02:19<00:43, 36.66 permutations/s]
Permutation test:  84%|████████▍ | 8423/10000 [02:19<00:42, 36.77 permutations/s]
Permutation test:  84%|████████▍ | 8428/10000 [02:19<00:40, 38.36 permutations/s]
Permutation test:  84%|████████▍ | 8433/10000 [02:19<00:42, 37.08 permutations/s]
Permutation test:  84%|████████▍ | 8437/10000 [02:19<00:42, 37.09 permutations/s]
Permutation test:  84%|████████▍ | 8441/10000 [02:19<00:42, 36.66 permutations/s]
Permutation test:  84%|████████▍ | 8445/10000 [02:19<00:42, 36.36 permutations/s]
Permutation test:  84%|████████▍ | 8449/10000 [02:20<00:42, 36.56 permutations/s]
Permutation test:  85%|████████▍ | 8453/10000 [02:20<00:42, 36.33 permutations/s]
Permutation test:  85%|████████▍ | 8458/10000 [02:20<00:42, 36.51 permutations/s]
Permutation test:  85%|████████▍ | 8462/10000 [02:20<00:42, 36.29 permutations/s]
Permutation test:  85%|████████▍ | 8466/10000 [02:20<00:42, 36.09 permutations/s]
Permutation test:  85%|████████▍ | 8470/10000 [02:20<00:41, 36.77 permutations/s]
Permutation test:  85%|████████▍ | 8474/10000 [02:20<00:42, 35.68 permutations/s]
Permutation test:  85%|████████▍ | 8478/10000 [02:20<00:42, 36.03 permutations/s]
Permutation test:  85%|████████▍ | 8482/10000 [02:20<00:42, 35.49 permutations/s]
Permutation test:  85%|████████▍ | 8486/10000 [02:21<00:41, 36.06 permutations/s]
Permutation test:  85%|████████▍ | 8490/10000 [02:21<00:43, 35.07 permutations/s]
Permutation test:  85%|████████▍ | 8494/10000 [02:21<00:43, 34.63 permutations/s]
Permutation test:  85%|████████▍ | 8498/10000 [02:21<00:42, 35.70 permutations/s]
Permutation test:  85%|████████▌ | 8503/10000 [02:21<00:41, 35.71 permutations/s]
Permutation test:  85%|████████▌ | 8507/10000 [02:21<00:40, 36.47 permutations/s]
Permutation test:  85%|████████▌ | 8511/10000 [02:21<00:41, 36.24 permutations/s]
Permutation test:  85%|████████▌ | 8515/10000 [02:21<00:41, 35.70 permutations/s]
Permutation test:  85%|████████▌ | 8519/10000 [02:21<00:41, 35.69 permutations/s]
Permutation test:  85%|████████▌ | 8523/10000 [02:22<00:41, 35.73 permutations/s]
Permutation test:  85%|████████▌ | 8527/10000 [02:22<00:40, 36.09 permutations/s]
Permutation test:  85%|████████▌ | 8531/10000 [02:22<00:43, 34.14 permutations/s]
Permutation test:  85%|████████▌ | 8535/10000 [02:22<00:42, 34.26 permutations/s]
Permutation test:  85%|████████▌ | 8539/10000 [02:22<00:42, 34.67 permutations/s]
Permutation test:  85%|████████▌ | 8543/10000 [02:22<00:43, 33.88 permutations/s]
Permutation test:  85%|████████▌ | 8547/10000 [02:22<00:42, 34.41 permutations/s]
Permutation test:  86%|████████▌ | 8551/10000 [02:22<00:41, 34.84 permutations/s]
Permutation test:  86%|████████▌ | 8555/10000 [02:23<00:41, 35.10 permutations/s]
Permutation test:  86%|████████▌ | 8559/10000 [02:23<00:41, 35.05 permutations/s]
Permutation test:  86%|████████▌ | 8563/10000 [02:23<00:39, 36.23 permutations/s]
Permutation test:  86%|████████▌ | 8567/10000 [02:23<00:39, 36.05 permutations/s]
Permutation test:  86%|████████▌ | 8571/10000 [02:23<00:39, 35.97 permutations/s]
Permutation test:  86%|████████▌ | 8575/10000 [02:23<00:40, 35.53 permutations/s]
Permutation test:  86%|████████▌ | 8579/10000 [02:23<00:40, 35.22 permutations/s]
Permutation test:  86%|████████▌ | 8583/10000 [02:23<00:39, 35.71 permutations/s]
Permutation test:  86%|████████▌ | 8587/10000 [02:23<00:39, 35.74 permutations/s]
Permutation test:  86%|████████▌ | 8591/10000 [02:24<00:39, 35.35 permutations/s]
Permutation test:  86%|████████▌ | 8595/10000 [02:24<00:39, 35.83 permutations/s]
Permutation test:  86%|████████▌ | 8599/10000 [02:24<00:39, 35.79 permutations/s]
Permutation test:  86%|████████▌ | 8603/10000 [02:24<00:39, 35.27 permutations/s]
Permutation test:  86%|████████▌ | 8607/10000 [02:24<00:40, 34.78 permutations/s]
Permutation test:  86%|████████▌ | 8611/10000 [02:24<00:39, 35.07 permutations/s]
Permutation test:  86%|████████▌ | 8615/10000 [02:24<00:39, 35.25 permutations/s]
Permutation test:  86%|████████▌ | 8619/10000 [02:24<00:39, 35.01 permutations/s]
Permutation test:  86%|████████▌ | 8623/10000 [02:24<00:38, 35.97 permutations/s]
Permutation test:  86%|████████▋ | 8627/10000 [02:25<00:38, 35.54 permutations/s]
Permutation test:  86%|████████▋ | 8631/10000 [02:25<00:37, 36.36 permutations/s]
Permutation test:  86%|████████▋ | 8635/10000 [02:25<00:37, 36.15 permutations/s]
Permutation test:  86%|████████▋ | 8639/10000 [02:25<00:36, 36.79 permutations/s]
Permutation test:  86%|████████▋ | 8643/10000 [02:25<00:36, 36.91 permutations/s]
Permutation test:  86%|████████▋ | 8647/10000 [02:25<00:37, 36.45 permutations/s]
Permutation test:  87%|████████▋ | 8651/10000 [02:25<00:37, 35.86 permutations/s]
Permutation test:  87%|████████▋ | 8655/10000 [02:25<00:37, 35.78 permutations/s]
Permutation test:  87%|████████▋ | 8659/10000 [02:25<00:37, 35.45 permutations/s]
Permutation test:  87%|████████▋ | 8663/10000 [02:26<00:37, 35.90 permutations/s]
Permutation test:  87%|████████▋ | 8667/10000 [02:26<00:37, 35.86 permutations/s]
Permutation test:  87%|████████▋ | 8671/10000 [02:26<00:37, 35.08 permutations/s]
Permutation test:  87%|████████▋ | 8675/10000 [02:26<00:39, 33.81 permutations/s]
Permutation test:  87%|████████▋ | 8679/10000 [02:26<00:38, 34.73 permutations/s]
Permutation test:  87%|████████▋ | 8683/10000 [02:26<00:37, 35.03 permutations/s]
Permutation test:  87%|████████▋ | 8687/10000 [02:26<00:37, 35.23 permutations/s]
Permutation test:  87%|████████▋ | 8691/10000 [02:26<00:36, 35.74 permutations/s]
Permutation test:  87%|████████▋ | 8695/10000 [02:26<00:36, 35.90 permutations/s]
Permutation test:  87%|████████▋ | 8699/10000 [02:27<00:36, 36.05 permutations/s]
Permutation test:  87%|████████▋ | 8703/10000 [02:27<00:35, 36.33 permutations/s]
Permutation test:  87%|████████▋ | 8707/10000 [02:27<00:35, 36.14 permutations/s]
Permutation test:  87%|████████▋ | 8711/10000 [02:27<00:35, 36.04 permutations/s]
Permutation test:  87%|████████▋ | 8715/10000 [02:27<00:35, 36.67 permutations/s]
Permutation test:  87%|████████▋ | 8719/10000 [02:27<00:35, 36.44 permutations/s]
Permutation test:  87%|████████▋ | 8723/10000 [02:27<00:34, 36.61 permutations/s]
Permutation test:  87%|████████▋ | 8727/10000 [02:27<00:36, 35.19 permutations/s]
Permutation test:  87%|████████▋ | 8731/10000 [02:27<00:35, 35.72 permutations/s]
Permutation test:  87%|████████▋ | 8735/10000 [02:28<00:35, 35.75 permutations/s]
Permutation test:  87%|████████▋ | 8739/10000 [02:28<00:35, 35.72 permutations/s]
Permutation test:  87%|████████▋ | 8743/10000 [02:28<00:35, 35.72 permutations/s]
Permutation test:  87%|████████▋ | 8747/10000 [02:28<00:35, 35.71 permutations/s]
Permutation test:  88%|████████▊ | 8751/10000 [02:28<00:35, 35.33 permutations/s]
Permutation test:  88%|████████▊ | 8755/10000 [02:28<00:35, 35.46 permutations/s]
Permutation test:  88%|████████▊ | 8759/10000 [02:28<00:34, 35.85 permutations/s]
Permutation test:  88%|████████▊ | 8763/10000 [02:28<00:34, 35.85 permutations/s]
Permutation test:  88%|████████▊ | 8767/10000 [02:28<00:34, 35.40 permutations/s]
Permutation test:  88%|████████▊ | 8771/10000 [02:29<00:36, 34.10 permutations/s]
Permutation test:  88%|████████▊ | 8775/10000 [02:29<00:35, 34.90 permutations/s]
Permutation test:  88%|████████▊ | 8779/10000 [02:29<00:33, 35.92 permutations/s]
Permutation test:  88%|████████▊ | 8783/10000 [02:29<00:33, 35.84 permutations/s]
Permutation test:  88%|████████▊ | 8787/10000 [02:29<00:32, 36.96 permutations/s]
Permutation test:  88%|████████▊ | 8792/10000 [02:29<00:32, 36.97 permutations/s]
Permutation test:  88%|████████▊ | 8796/10000 [02:29<00:32, 37.35 permutations/s]
Permutation test:  88%|████████▊ | 8800/10000 [02:29<00:32, 36.91 permutations/s]
Permutation test:  88%|████████▊ | 8804/10000 [02:29<00:32, 36.92 permutations/s]
Permutation test:  88%|████████▊ | 8808/10000 [02:30<00:33, 35.76 permutations/s]
Permutation test:  88%|████████▊ | 8812/10000 [02:30<00:32, 36.12 permutations/s]
Permutation test:  88%|████████▊ | 8816/10000 [02:30<00:32, 36.37 permutations/s]
Permutation test:  88%|████████▊ | 8820/10000 [02:30<00:32, 36.18 permutations/s]
Permutation test:  88%|████████▊ | 8824/10000 [02:30<00:31, 36.84 permutations/s]
Permutation test:  88%|████████▊ | 8828/10000 [02:30<00:31, 37.36 permutations/s]
Permutation test:  88%|████████▊ | 8832/10000 [02:30<00:31, 36.85 permutations/s]
Permutation test:  88%|████████▊ | 8836/10000 [02:30<00:32, 36.05 permutations/s]
Permutation test:  88%|████████▊ | 8840/10000 [02:30<00:31, 36.76 permutations/s]
Permutation test:  88%|████████▊ | 8845/10000 [02:31<00:32, 35.68 permutations/s]
Permutation test:  88%|████████▊ | 8849/10000 [02:31<00:31, 36.05 permutations/s]
Permutation test:  89%|████████▊ | 8853/10000 [02:31<00:31, 35.97 permutations/s]
Permutation test:  89%|████████▊ | 8857/10000 [02:31<00:31, 35.83 permutations/s]
Permutation test:  89%|████████▊ | 8861/10000 [02:31<00:31, 36.23 permutations/s]
Permutation test:  89%|████████▊ | 8866/10000 [02:31<00:30, 36.75 permutations/s]
Permutation test:  89%|████████▊ | 8870/10000 [02:31<00:30, 36.92 permutations/s]
Permutation test:  89%|████████▊ | 8874/10000 [02:31<00:30, 36.91 permutations/s]
Permutation test:  89%|████████▉ | 8878/10000 [02:31<00:30, 36.49 permutations/s]
Permutation test:  89%|████████▉ | 8882/10000 [02:32<00:30, 36.26 permutations/s]
Permutation test:  89%|████████▉ | 8886/10000 [02:32<00:30, 36.54 permutations/s]
Permutation test:  89%|████████▉ | 8890/10000 [02:32<00:29, 37.09 permutations/s]
Permutation test:  89%|████████▉ | 8894/10000 [02:32<00:29, 37.19 permutations/s]
Permutation test:  89%|████████▉ | 8898/10000 [02:32<00:30, 36.25 permutations/s]
Permutation test:  89%|████████▉ | 8903/10000 [02:32<00:29, 37.52 permutations/s]
Permutation test:  89%|████████▉ | 8907/10000 [02:32<00:28, 37.81 permutations/s]
Permutation test:  89%|████████▉ | 8911/10000 [02:32<00:29, 37.14 permutations/s]
Permutation test:  89%|████████▉ | 8915/10000 [02:32<00:29, 36.76 permutations/s]
Permutation test:  89%|████████▉ | 8919/10000 [02:33<00:30, 36.03 permutations/s]
Permutation test:  89%|████████▉ | 8923/10000 [02:33<00:29, 36.36 permutations/s]
Permutation test:  89%|████████▉ | 8927/10000 [02:33<00:29, 36.54 permutations/s]
Permutation test:  89%|████████▉ | 8931/10000 [02:33<00:29, 36.59 permutations/s]
Permutation test:  89%|████████▉ | 8935/10000 [02:33<00:28, 37.25 permutations/s]
Permutation test:  89%|████████▉ | 8939/10000 [02:33<00:28, 37.72 permutations/s]
Permutation test:  89%|████████▉ | 8943/10000 [02:33<00:28, 36.97 permutations/s]
Permutation test:  89%|████████▉ | 8947/10000 [02:33<00:27, 37.82 permutations/s]
Permutation test:  90%|████████▉ | 8951/10000 [02:33<00:27, 37.57 permutations/s]
Permutation test:  90%|████████▉ | 8955/10000 [02:34<00:28, 37.04 permutations/s]
Permutation test:  90%|████████▉ | 8959/10000 [02:34<00:27, 37.45 permutations/s]
Permutation test:  90%|████████▉ | 8963/10000 [02:34<00:28, 36.00 permutations/s]
Permutation test:  90%|████████▉ | 8967/10000 [02:34<00:28, 36.01 permutations/s]
Permutation test:  90%|████████▉ | 8971/10000 [02:34<00:28, 36.53 permutations/s]
Permutation test:  90%|████████▉ | 8975/10000 [02:34<00:28, 35.68 permutations/s]
Permutation test:  90%|████████▉ | 8979/10000 [02:34<00:28, 35.31 permutations/s]
Permutation test:  90%|████████▉ | 8983/10000 [02:34<00:28, 35.34 permutations/s]
Permutation test:  90%|████████▉ | 8987/10000 [02:34<00:28, 35.51 permutations/s]
Permutation test:  90%|████████▉ | 8991/10000 [02:35<00:28, 35.60 permutations/s]
Permutation test:  90%|████████▉ | 8995/10000 [02:35<00:28, 35.64 permutations/s]
Permutation test:  90%|████████▉ | 8999/10000 [02:35<00:28, 35.69 permutations/s]
Permutation test:  90%|█████████ | 9003/10000 [02:35<00:28, 35.19 permutations/s]
Permutation test:  90%|█████████ | 9007/10000 [02:35<00:28, 35.20 permutations/s]
Permutation test:  90%|█████████ | 9011/10000 [02:35<00:27, 35.60 permutations/s]
Permutation test:  90%|█████████ | 9015/10000 [02:35<00:27, 35.27 permutations/s]
Permutation test:  90%|█████████ | 9019/10000 [02:35<00:27, 35.04 permutations/s]
Permutation test:  90%|█████████ | 9023/10000 [02:35<00:28, 34.51 permutations/s]
Permutation test:  90%|█████████ | 9027/10000 [02:36<00:27, 34.82 permutations/s]
Permutation test:  90%|█████████ | 9031/10000 [02:36<00:28, 34.04 permutations/s]
Permutation test:  90%|█████████ | 9035/10000 [02:36<00:27, 34.50 permutations/s]
Permutation test:  90%|█████████ | 9039/10000 [02:36<00:27, 34.89 permutations/s]
Permutation test:  90%|█████████ | 9043/10000 [02:36<00:26, 35.49 permutations/s]
Permutation test:  90%|█████████ | 9047/10000 [02:36<00:26, 35.55 permutations/s]
Permutation test:  91%|█████████ | 9051/10000 [02:36<00:26, 35.58 permutations/s]
Permutation test:  91%|█████████ | 9055/10000 [02:36<00:26, 35.29 permutations/s]
Permutation test:  91%|█████████ | 9059/10000 [02:37<00:26, 35.37 permutations/s]
Permutation test:  91%|█████████ | 9063/10000 [02:37<00:26, 35.08 permutations/s]
Permutation test:  91%|█████████ | 9068/10000 [02:37<00:26, 35.35 permutations/s]
Permutation test:  91%|█████████ | 9072/10000 [02:37<00:26, 35.43 permutations/s]
Permutation test:  91%|█████████ | 9076/10000 [02:37<00:25, 36.23 permutations/s]
Permutation test:  91%|█████████ | 9081/10000 [02:37<00:24, 37.58 permutations/s]
Permutation test:  91%|█████████ | 9085/10000 [02:37<00:25, 36.29 permutations/s]
Permutation test:  91%|█████████ | 9089/10000 [02:37<00:24, 36.46 permutations/s]
Permutation test:  91%|█████████ | 9093/10000 [02:37<00:25, 35.90 permutations/s]
Permutation test:  91%|█████████ | 9098/10000 [02:38<00:25, 35.11 permutations/s]
Permutation test:  91%|█████████ | 9102/10000 [02:38<00:25, 35.32 permutations/s]
Permutation test:  91%|█████████ | 9106/10000 [02:38<00:24, 36.52 permutations/s]
Permutation test:  91%|█████████ | 9110/10000 [02:38<00:25, 35.52 permutations/s]
Permutation test:  91%|█████████ | 9114/10000 [02:38<00:24, 35.59 permutations/s]
Permutation test:  91%|█████████ | 9118/10000 [02:38<00:25, 35.24 permutations/s]
Permutation test:  91%|█████████ | 9123/10000 [02:38<00:23, 36.82 permutations/s]
Permutation test:  91%|█████████▏| 9127/10000 [02:38<00:23, 36.52 permutations/s]
Permutation test:  91%|█████████▏| 9131/10000 [02:39<00:23, 36.31 permutations/s]
Permutation test:  91%|█████████▏| 9135/10000 [02:39<00:23, 36.15 permutations/s]
Permutation test:  91%|█████████▏| 9140/10000 [02:39<00:24, 35.64 permutations/s]
Permutation test:  91%|█████████▏| 9144/10000 [02:39<00:23, 36.03 permutations/s]
Permutation test:  91%|█████████▏| 9148/10000 [02:39<00:23, 35.91 permutations/s]
Permutation test:  92%|█████████▏| 9152/10000 [02:39<00:23, 36.26 permutations/s]
Permutation test:  92%|█████████▏| 9156/10000 [02:39<00:23, 35.36 permutations/s]
Permutation test:  92%|█████████▏| 9160/10000 [02:39<00:23, 35.79 permutations/s]
Permutation test:  92%|█████████▏| 9164/10000 [02:39<00:23, 36.11 permutations/s]
Permutation test:  92%|█████████▏| 9168/10000 [02:40<00:23, 35.68 permutations/s]
Permutation test:  92%|█████████▏| 9172/10000 [02:40<00:23, 35.70 permutations/s]
Permutation test:  92%|█████████▏| 9176/10000 [02:40<00:22, 36.10 permutations/s]
Permutation test:  92%|█████████▏| 9180/10000 [02:40<00:22, 36.38 permutations/s]
Permutation test:  92%|█████████▏| 9184/10000 [02:40<00:22, 35.72 permutations/s]
Permutation test:  92%|█████████▏| 9188/10000 [02:40<00:22, 35.78 permutations/s]
Permutation test:  92%|█████████▏| 9192/10000 [02:40<00:23, 35.00 permutations/s]
Permutation test:  92%|█████████▏| 9196/10000 [02:40<00:23, 34.79 permutations/s]
Permutation test:  92%|█████████▏| 9200/10000 [02:40<00:23, 34.64 permutations/s]
Permutation test:  92%|█████████▏| 9204/10000 [02:41<00:23, 34.01 permutations/s]
Permutation test:  92%|█████████▏| 9209/10000 [02:41<00:22, 35.59 permutations/s]
Permutation test:  92%|█████████▏| 9213/10000 [02:41<00:21, 36.36 permutations/s]
Permutation test:  92%|█████████▏| 9217/10000 [02:41<00:21, 36.17 permutations/s]
Permutation test:  92%|█████████▏| 9221/10000 [02:41<00:22, 35.32 permutations/s]
Permutation test:  92%|█████████▏| 9225/10000 [02:41<00:21, 35.75 permutations/s]
Permutation test:  92%|█████████▏| 9229/10000 [02:41<00:21, 35.11 permutations/s]
Permutation test:  92%|█████████▏| 9233/10000 [02:41<00:21, 35.99 permutations/s]
Permutation test:  92%|█████████▏| 9237/10000 [02:41<00:21, 35.13 permutations/s]
Permutation test:  92%|█████████▏| 9241/10000 [02:42<00:21, 35.26 permutations/s]
Permutation test:  92%|█████████▏| 9245/10000 [02:42<00:21, 35.50 permutations/s]
Permutation test:  92%|█████████▏| 9249/10000 [02:42<00:21, 34.76 permutations/s]
Permutation test:  93%|█████████▎| 9253/10000 [02:42<00:21, 33.96 permutations/s]
Permutation test:  93%|█████████▎| 9257/10000 [02:42<00:21, 34.23 permutations/s]
Permutation test:  93%|█████████▎| 9261/10000 [02:42<00:20, 35.31 permutations/s]
Permutation test:  93%|█████████▎| 9265/10000 [02:42<00:21, 34.64 permutations/s]
Permutation test:  93%|█████████▎| 9269/10000 [02:42<00:20, 34.96 permutations/s]
Permutation test:  93%|█████████▎| 9274/10000 [02:43<00:20, 35.97 permutations/s]
Permutation test:  93%|█████████▎| 9278/10000 [02:43<00:20, 35.65 permutations/s]
Permutation test:  93%|█████████▎| 9282/10000 [02:43<00:20, 35.49 permutations/s]
Permutation test:  93%|█████████▎| 9286/10000 [02:43<00:19, 36.00 permutations/s]
Permutation test:  93%|█████████▎| 9290/10000 [02:43<00:19, 36.24 permutations/s]
Permutation test:  93%|█████████▎| 9294/10000 [02:43<00:19, 36.15 permutations/s]
Permutation test:  93%|█████████▎| 9299/10000 [02:43<00:19, 35.99 permutations/s]
Permutation test:  93%|█████████▎| 9303/10000 [02:43<00:19, 36.63 permutations/s]
Permutation test:  93%|█████████▎| 9307/10000 [02:43<00:18, 36.74 permutations/s]
Permutation test:  93%|█████████▎| 9311/10000 [02:44<00:18, 36.44 permutations/s]
Permutation test:  93%|█████████▎| 9315/10000 [02:44<00:18, 36.61 permutations/s]
Permutation test:  93%|█████████▎| 9319/10000 [02:44<00:18, 35.94 permutations/s]
Permutation test:  93%|█████████▎| 9323/10000 [02:44<00:18, 36.29 permutations/s]
Permutation test:  93%|█████████▎| 9327/10000 [02:44<00:18, 36.73 permutations/s]
Permutation test:  93%|█████████▎| 9331/10000 [02:44<00:18, 35.46 permutations/s]
Permutation test:  93%|█████████▎| 9335/10000 [02:44<00:18, 36.67 permutations/s]
Permutation test:  93%|█████████▎| 9339/10000 [02:44<00:18, 36.00 permutations/s]
Permutation test:  93%|█████████▎| 9343/10000 [02:44<00:18, 35.17 permutations/s]
Permutation test:  93%|█████████▎| 9347/10000 [02:45<00:17, 36.47 permutations/s]
Permutation test:  94%|█████████▎| 9351/10000 [02:45<00:18, 35.86 permutations/s]
Permutation test:  94%|█████████▎| 9355/10000 [02:45<00:17, 36.62 permutations/s]
Permutation test:  94%|█████████▎| 9359/10000 [02:45<00:17, 35.96 permutations/s]
Permutation test:  94%|█████████▎| 9368/10000 [02:45<00:12, 50.25 permutations/s]
Permutation test:  94%|█████████▍| 9376/10000 [02:45<00:10, 57.97 permutations/s]
Permutation test:  94%|█████████▍| 9387/10000 [02:45<00:08, 72.77 permutations/s]
Permutation test:  94%|█████████▍| 9400/10000 [02:45<00:06, 88.77 permutations/s]
Permutation test:  94%|█████████▍| 9410/10000 [02:45<00:06, 90.47 permutations/s]
Permutation test:  94%|█████████▍| 9422/10000 [02:46<00:06, 95.71 permutations/s]
Permutation test:  94%|█████████▍| 9436/10000 [02:46<00:05, 101.64 permutations/s]
Permutation test:  94%|█████████▍| 9449/10000 [02:46<00:05, 100.66 permutations/s]
Permutation test:  95%|█████████▍| 9460/10000 [02:46<00:05, 95.71 permutations/s]
Permutation test:  95%|█████████▍| 9470/10000 [02:46<00:05, 92.95 permutations/s]
Permutation test:  95%|█████████▍| 9482/10000 [02:46<00:05, 92.54 permutations/s]
Permutation test:  95%|█████████▍| 9498/10000 [02:46<00:04, 107.43 permutations/s]
Permutation test:  95%|█████████▌| 9509/10000 [02:46<00:04, 98.65 permutations/s]
Permutation test:  95%|█████████▌| 9520/10000 [02:47<00:04, 97.61 permutations/s]
Permutation test:  95%|█████████▌| 9532/10000 [02:47<00:04, 99.59 permutations/s]
Permutation test:  95%|█████████▌| 9545/10000 [02:47<00:04, 104.58 permutations/s]
Permutation test:  96%|█████████▌| 9559/10000 [02:47<00:03, 112.22 permutations/s]
Permutation test:  96%|█████████▌| 9572/10000 [02:47<00:03, 115.78 permutations/s]
Permutation test:  96%|█████████▌| 9585/10000 [02:47<00:03, 118.31 permutations/s]
Permutation test:  96%|█████████▌| 9597/10000 [02:47<00:03, 104.71 permutations/s]
Permutation test:  96%|█████████▌| 9608/10000 [02:47<00:03, 101.84 permutations/s]
Permutation test:  96%|█████████▌| 9619/10000 [02:47<00:03, 99.58 permutations/s]
Permutation test:  96%|█████████▋| 9630/10000 [02:48<00:03, 95.44 permutations/s]
Permutation test:  96%|█████████▋| 9640/10000 [02:48<00:04, 84.36 permutations/s]
Permutation test:  97%|█████████▋| 9652/10000 [02:48<00:03, 92.82 permutations/s]
Permutation test:  97%|█████████▋| 9667/10000 [02:48<00:03, 103.63 permutations/s]
Permutation test:  97%|█████████▋| 9680/10000 [02:48<00:02, 109.42 permutations/s]
Permutation test:  97%|█████████▋| 9694/10000 [02:48<00:02, 117.35 permutations/s]
Permutation test:  97%|█████████▋| 9707/10000 [02:48<00:02, 110.14 permutations/s]
Permutation test:  97%|█████████▋| 9719/10000 [02:48<00:02, 109.39 permutations/s]
Permutation test:  97%|█████████▋| 9732/10000 [02:49<00:02, 111.23 permutations/s]
Permutation test:  97%|█████████▋| 9745/10000 [02:49<00:02, 115.07 permutations/s]
Permutation test:  98%|█████████▊| 9757/10000 [02:49<00:02, 116.32 permutations/s]
Permutation test:  98%|█████████▊| 9773/10000 [02:49<00:01, 127.30 permutations/s]
Permutation test:  98%|█████████▊| 9786/10000 [02:49<00:01, 126.62 permutations/s]
Permutation test:  98%|█████████▊| 9799/10000 [02:49<00:01, 119.88 permutations/s]
Permutation test:  98%|█████████▊| 9814/10000 [02:49<00:01, 127.77 permutations/s]
Permutation test:  98%|█████████▊| 9827/10000 [02:49<00:01, 113.03 permutations/s]
Permutation test:  98%|█████████▊| 9840/10000 [02:49<00:01, 116.28 permutations/s]
Permutation test:  99%|█████████▊| 9852/10000 [02:50<00:01, 106.09 permutations/s]
Permutation test:  99%|█████████▊| 9863/10000 [02:50<00:01, 100.77 permutations/s]
Permutation test:  99%|█████████▉| 9879/10000 [02:50<00:01, 112.33 permutations/s]
Permutation test:  99%|█████████▉| 9894/10000 [02:50<00:00, 122.09 permutations/s]
Permutation test:  99%|█████████▉| 9907/10000 [02:50<00:00, 124.00 permutations/s]
Permutation test:  99%|█████████▉| 9920/10000 [02:50<00:00, 104.85 permutations/s]
Permutation test:  99%|█████████▉| 9935/10000 [02:50<00:00, 113.94 permutations/s]
Permutation test:  99%|█████████▉| 9948/10000 [02:50<00:00, 116.95 permutations/s]
Permutation test: 100%|█████████▉| 9961/10000 [02:51<00:00, 102.92 permutations/s]
Permutation test: 100%|█████████▉| 9972/10000 [02:51<00:00, 83.05 permutations/s]
Permutation test: 100%|█████████▉| 9982/10000 [02:51<00:00, 79.13 permutations/s]
Permutation test: 100%|█████████▉| 9991/10000 [02:51<00:00, 79.13 permutations/s]
Permutation test: 100%|██████████| 10000/10000 [02:51<00:00, 67.49 permutations/s]
Permutation test: 100%|██████████| 10000/10000 [02:51<00:00, 58.25 permutations/s]

A quick plot suggests an early effect related to n_chars around 130 ms, and a later effect of cloze around 400 ms:

p = plot.TopoButterfly(lm, t=0.130, axh=2, w=6)
sensor lm

Detailed plots of the two effects show that the cluster is quite variable due to noise in the data.

p = plot.TopoArray(lm.masked_parameter_map('n_chars'), t=[0.110, 0.130, 0.150], title='N Chars')
p = plot.TopoArray(lm.masked_parameter_map('cloze'), t=[0.380, 0.400, 0.420], title='Cloze')
  • N Chars
  • Cloze

To access some of the test results we need to know the index of different effects:

('intercept', 'n_chars', 'cloze')

Create a plot that shows the spatial cluster extent across time.

EFFECTS = [
    ('n_chars', (0.110, 0.150)),
    ('cloze', (0.380, 0.420)),
]

t_maps = []
for effect, time in EFFECTS:
    # t-maps are retrieved by effect name
    t = lm.t(effect).mean(time=time)
    # p-maps are stored in a list, so we need to know the index of te effect
    index = lm.effects.index(effect)
    # We are interested in the maximal spatial cluster extent, i.e., any sensor that is part of the cluster at any time
    p = lm.p[index].min(time=time)
    # Create a masked average t map
    t_av = t.mask(p > 0.05)
    t_maps.append(t_av)

p = plot.Topomap(t_maps, ncol=2)
n_chars, cloze

Total running time of the script: (2 minutes 56.049 seconds)

Gallery generated by Sphinx-Gallery