Spatiotemporal permutation F-test on full sensor data

Tests for differential evoked responses in at least one condition using a permutation clustering test. The FieldTrip neighbor templates will be used to determine the adjacency between sensors. This serves as a spatial prior to the clustering. Spatiotemporal clusters will then be visualized using custom matplotlib code.

See the FieldTrip website for a caveat regarding the possible interpretation of “significant” clusters.

# Authors: Denis Engemann <denis.engemann@gmail.com>
#          Jona Sassenhagen <jona.sassenhagen@gmail.com>
#
# License: BSD (3-clause)

import numpy as np
import matplotlib.pyplot as plt
from mpl_toolkits.axes_grid1 import make_axes_locatable

import mne
from mne.stats import spatio_temporal_cluster_test
from mne.datasets import sample
from mne.channels import find_ch_adjacency
from mne.viz import plot_compare_evokeds

print(__doc__)

Set parameters

data_path = sample.data_path()
raw_fname = data_path + '/MEG/sample/sample_audvis_filt-0-40_raw.fif'
event_fname = data_path + '/MEG/sample/sample_audvis_filt-0-40_raw-eve.fif'
event_id = {'Aud/L': 1, 'Aud/R': 2, 'Vis/L': 3, 'Vis/R': 4}
tmin = -0.2
tmax = 0.5

# Setup for reading the raw data
raw = mne.io.read_raw_fif(raw_fname, preload=True)
raw.filter(1, 30, fir_design='firwin')
events = mne.read_events(event_fname)

Out:

Opening raw data file /home/circleci/mne_data/MNE-sample-data/MEG/sample/sample_audvis_filt-0-40_raw.fif...
    Read a total of 4 projection items:
        PCA-v1 (1 x 102)  idle
        PCA-v2 (1 x 102)  idle
        PCA-v3 (1 x 102)  idle
        Average EEG reference (1 x 60)  idle
    Range : 6450 ... 48149 =     42.956 ...   320.665 secs
Ready.
Reading 0 ... 41699  =      0.000 ...   277.709 secs...
Filtering raw data in 1 contiguous segment
Setting up band-pass filter from 1 - 30 Hz

FIR filter parameters
---------------------
Designing a one-pass, zero-phase, non-causal bandpass filter:
- Windowed time-domain design (firwin) method
- Hamming window with 0.0194 passband ripple and 53 dB stopband attenuation
- Lower passband edge: 1.00
- Lower transition bandwidth: 1.00 Hz (-6 dB cutoff frequency: 0.50 Hz)
- Upper passband edge: 30.00 Hz
- Upper transition bandwidth: 7.50 Hz (-6 dB cutoff frequency: 33.75 Hz)
- Filter length: 497 samples (3.310 sec)

Read epochs for the channel of interest

picks = mne.pick_types(raw.info, meg='mag', eog=True)

reject = dict(mag=4e-12, eog=150e-6)
epochs = mne.Epochs(raw, events, event_id, tmin, tmax, picks=picks,
                    baseline=None, reject=reject, preload=True)

epochs.drop_channels(['EOG 061'])
epochs.equalize_event_counts(event_id)

X = [epochs[k].get_data() for k in event_id]  # as 3D matrix
X = [np.transpose(x, (0, 2, 1)) for x in X]  # transpose for clustering

Out:

Not setting metadata
Not setting metadata
288 matching events found
No baseline correction applied
Created an SSP operator (subspace dimension = 3)
4 projection items activated
Loading data for 288 events and 106 original time points ...
    Rejecting  epoch based on EOG : ['EOG 061']
    Rejecting  epoch based on EOG : ['EOG 061']
    Rejecting  epoch based on EOG : ['EOG 061']
    Rejecting  epoch based on EOG : ['EOG 061']
    Rejecting  epoch based on EOG : ['EOG 061']
    Rejecting  epoch based on EOG : ['EOG 061']
    Rejecting  epoch based on EOG : ['EOG 061']
    Rejecting  epoch based on EOG : ['EOG 061']
    Rejecting  epoch based on EOG : ['EOG 061']
    Rejecting  epoch based on EOG : ['EOG 061']
    Rejecting  epoch based on EOG : ['EOG 061']
    Rejecting  epoch based on EOG : ['EOG 061']
    Rejecting  epoch based on EOG : ['EOG 061']
    Rejecting  epoch based on EOG : ['EOG 061']
    Rejecting  epoch based on EOG : ['EOG 061']
    Rejecting  epoch based on MAG : ['MEG 1711']
    Rejecting  epoch based on EOG : ['EOG 061']
    Rejecting  epoch based on EOG : ['EOG 061']
    Rejecting  epoch based on EOG : ['EOG 061']
    Rejecting  epoch based on EOG : ['EOG 061']
    Rejecting  epoch based on EOG : ['EOG 061']
    Rejecting  epoch based on MAG : ['MEG 1711']
    Rejecting  epoch based on EOG : ['EOG 061']
    Rejecting  epoch based on EOG : ['EOG 061']
    Rejecting  epoch based on EOG : ['EOG 061']
    Rejecting  epoch based on EOG : ['EOG 061']
    Rejecting  epoch based on EOG : ['EOG 061']
    Rejecting  epoch based on EOG : ['EOG 061']
    Rejecting  epoch based on EOG : ['EOG 061']
    Rejecting  epoch based on EOG : ['EOG 061']
    Rejecting  epoch based on EOG : ['EOG 061']
    Rejecting  epoch based on EOG : ['EOG 061']
    Rejecting  epoch based on EOG : ['EOG 061']
    Rejecting  epoch based on EOG : ['EOG 061']
    Rejecting  epoch based on EOG : ['EOG 061']
    Rejecting  epoch based on EOG : ['EOG 061']
    Rejecting  epoch based on EOG : ['EOG 061']
    Rejecting  epoch based on EOG : ['EOG 061']
    Rejecting  epoch based on EOG : ['EOG 061']
    Rejecting  epoch based on EOG : ['EOG 061']
    Rejecting  epoch based on EOG : ['EOG 061']
    Rejecting  epoch based on EOG : ['EOG 061']
    Rejecting  epoch based on EOG : ['EOG 061']
    Rejecting  epoch based on EOG : ['EOG 061']
    Rejecting  epoch based on EOG : ['EOG 061']
    Rejecting  epoch based on EOG : ['EOG 061']
    Rejecting  epoch based on EOG : ['EOG 061']
    Rejecting  epoch based on EOG : ['EOG 061']
    Rejecting  epoch based on EOG : ['EOG 061']
49 bad epochs dropped
Removing projector <Projection | Average EEG reference, active : True, n_channels : 60>
Dropped 19 epochs: 50, 51, 84, 93, 95, 96, 129, 146, 149, 150, 154, 156, 157, 189, 194, 200, 202, 210, 211

Find the FieldTrip neighbor definition to setup sensor adjacency

adjacency, ch_names = find_ch_adjacency(epochs.info, ch_type='mag')

print(type(adjacency))  # it's a sparse matrix!

plt.imshow(adjacency.toarray(), cmap='gray', origin='lower',
           interpolation='nearest')
plt.xlabel('{} Magnetometers'.format(len(ch_names)))
plt.ylabel('{} Magnetometers'.format(len(ch_names)))
plt.title('Between-sensor adjacency')
Between-sensor adjacency

Out:

Reading adjacency matrix for neuromag306mag.
<class 'scipy.sparse.csr.csr_matrix'>

Compute permutation statistic

How does it work? We use clustering to “bind” together features which are similar. Our features are the magnetic fields measured over our sensor array at different times. This reduces the multiple comparison problem. To compute the actual test-statistic, we first sum all F-values in all clusters. We end up with one statistic for each cluster. Then we generate a distribution from the data by shuffling our conditions between our samples and recomputing our clusters and the test statistics. We test for the significance of a given cluster by computing the probability of observing a cluster of that size. For more background read: Maris/Oostenveld (2007), “Nonparametric statistical testing of EEG- and MEG-data” Journal of Neuroscience Methods, Vol. 164, No. 1., pp. 177-190. doi:10.1016/j.jneumeth.2007.03.024

# set cluster threshold
threshold = 50.0  # very high, but the test is quite sensitive on this data
# set family-wise p-value
p_accept = 0.01

cluster_stats = spatio_temporal_cluster_test(X, n_permutations=1000,
                                             threshold=threshold, tail=1,
                                             n_jobs=1, buffer_size=None,
                                             adjacency=adjacency)

T_obs, clusters, p_values, _ = cluster_stats
good_cluster_inds = np.where(p_values < p_accept)[0]

Out:

stat_fun(H1): min=0.004107 max=196.094418
Running initial clustering
Found 8 clusters
Permuting 999 times...

  0%|          |  : 0/999 [00:00<?,       ?it/s]
  0%|          |  : 2/999 [00:00<00:17,   58.40it/s]
  1%|          |  : 6/999 [00:00<00:16,   59.92it/s]
  1%|1         |  : 10/999 [00:00<00:16,   61.44it/s]
  1%|1         |  : 13/999 [00:00<00:15,   62.40it/s]
  2%|1         |  : 17/999 [00:00<00:15,   63.91it/s]
  2%|2         |  : 21/999 [00:00<00:14,   65.41it/s]
  2%|2         |  : 24/999 [00:00<00:14,   66.29it/s]
  3%|2         |  : 28/999 [00:00<00:14,   67.78it/s]
  3%|3         |  : 32/999 [00:00<00:13,   69.26it/s]
  4%|3         |  : 35/999 [00:00<00:13,   70.03it/s]
  4%|3         |  : 38/999 [00:00<00:13,   70.78it/s]
  4%|4         |  : 41/999 [00:00<00:13,   71.50it/s]
  5%|4         |  : 45/999 [00:00<00:13,   72.95it/s]
  5%|4         |  : 48/999 [00:00<00:12,   73.60it/s]
  5%|5         |  : 52/999 [00:00<00:12,   75.02it/s]
  6%|5         |  : 55/999 [00:00<00:12,   75.61it/s]
  6%|5         |  : 59/999 [00:00<00:12,   77.00it/s]
  6%|6         |  : 63/999 [00:00<00:11,   78.36it/s]
  7%|6         |  : 66/999 [00:00<00:11,   78.82it/s]
  7%|7         |  : 70/999 [00:00<00:11,   80.15it/s]
  7%|7         |  : 73/999 [00:00<00:11,   80.54it/s]
  8%|7         |  : 77/999 [00:00<00:11,   81.85it/s]
  8%|8         |  : 80/999 [00:00<00:11,   82.17it/s]
  8%|8         |  : 84/999 [00:00<00:10,   83.45it/s]
  9%|8         |  : 88/999 [00:00<00:10,   84.69it/s]
  9%|9         |  : 91/999 [00:00<00:10,   84.89it/s]
 10%|9         |  : 95/999 [00:00<00:10,   86.10it/s]
 10%|9         |  : 98/999 [00:00<00:10,   86.24it/s]
 10%|#         |  : 102/999 [00:00<00:10,   87.42it/s]
 11%|#         |  : 106/999 [00:01<00:10,   88.58it/s]
 11%|#         |  : 109/999 [00:01<00:10,   88.59it/s]
 11%|#1        |  : 113/999 [00:01<00:09,   89.72it/s]
 12%|#1        |  : 116/999 [00:01<00:09,   89.67it/s]
 12%|#2        |  : 120/999 [00:01<00:09,   90.77it/s]
 12%|#2        |  : 123/999 [00:01<00:09,   90.66it/s]
 13%|#2        |  : 127/999 [00:01<00:09,   91.74it/s]
 13%|#3        |  : 131/999 [00:01<00:09,   92.78it/s]
 13%|#3        |  : 134/999 [00:01<00:09,   92.56it/s]
 14%|#3        |  : 138/999 [00:01<00:09,   93.58it/s]
 14%|#4        |  : 142/999 [00:01<00:09,   94.57it/s]
 15%|#4        |  : 145/999 [00:01<00:09,   94.25it/s]
 15%|#4        |  : 149/999 [00:01<00:08,   95.23it/s]
 15%|#5        |  : 152/999 [00:01<00:08,   94.87it/s]
 16%|#5        |  : 156/999 [00:01<00:08,   95.82it/s]
 16%|#6        |  : 160/999 [00:01<00:08,   96.74it/s]
 16%|#6        |  : 163/999 [00:01<00:08,   96.31it/s]
 17%|#6        |  : 167/999 [00:01<00:08,   97.20it/s]
 17%|#7        |  : 170/999 [00:01<00:08,   96.72it/s]
 17%|#7        |  : 174/999 [00:01<00:08,   97.60it/s]
 18%|#7        |  : 177/999 [00:01<00:08,   97.11it/s]
 18%|#8        |  : 181/999 [00:01<00:08,   97.99it/s]
 18%|#8        |  : 184/999 [00:01<00:08,   97.48it/s]
 19%|#8        |  : 188/999 [00:01<00:08,   98.34it/s]
 19%|#9        |  : 192/999 [00:01<00:08,   99.18it/s]
 20%|#9        |  : 195/999 [00:01<00:08,   98.60it/s]
 20%|#9        |  : 199/999 [00:01<00:08,   99.43it/s]
 20%|##        |  : 203/999 [00:01<00:07,  100.24it/s]
 21%|##        |  : 206/999 [00:01<00:07,   99.59it/s]
 21%|##1       |  : 210/999 [00:01<00:07,  100.39it/s]
 21%|##1       |  : 213/999 [00:02<00:07,   99.72it/s]
 22%|##1       |  : 217/999 [00:02<00:07,  100.52it/s]
 22%|##2       |  : 221/999 [00:02<00:07,  101.27it/s]
 22%|##2       |  : 224/999 [00:02<00:07,  100.56it/s]
 23%|##2       |  : 228/999 [00:02<00:07,  101.31it/s]
 23%|##3       |  : 231/999 [00:02<00:07,  100.59it/s]
 24%|##3       |  : 235/999 [00:02<00:07,  101.34it/s]
 24%|##3       |  : 238/999 [00:02<00:07,  100.63it/s]
 24%|##4       |  : 242/999 [00:02<00:07,  101.39it/s]
 25%|##4       |  : 245/999 [00:02<00:07,  100.68it/s]
 25%|##4       |  : 249/999 [00:02<00:07,  101.44it/s]
 25%|##5       |  : 252/999 [00:02<00:07,  100.72it/s]
 26%|##5       |  : 256/999 [00:02<00:07,  101.47it/s]
 26%|##5       |  : 259/999 [00:02<00:07,  100.75it/s]
 26%|##6       |  : 263/999 [00:02<00:07,  101.50it/s]
 27%|##6       |  : 267/999 [00:02<00:07,  102.22it/s]
 27%|##7       |  : 270/999 [00:02<00:07,  101.44it/s]
 27%|##7       |  : 274/999 [00:02<00:07,  102.18it/s]
 28%|##7       |  : 278/999 [00:02<00:07,  102.87it/s]
 28%|##8       |  : 281/999 [00:02<00:07,  102.06it/s]
 29%|##8       |  : 285/999 [00:02<00:06,  102.77it/s]
 29%|##8       |  : 289/999 [00:02<00:06,  103.45it/s]
 29%|##9       |  : 292/999 [00:02<00:06,  102.60it/s]
 30%|##9       |  : 296/999 [00:02<00:06,  103.29it/s]
 30%|##9       |  : 299/999 [00:02<00:06,  102.45it/s]
 30%|###       |  : 303/999 [00:02<00:06,  103.15it/s]
 31%|###       |  : 307/999 [00:02<00:06,  103.81it/s]
 31%|###1      |  : 310/999 [00:02<00:06,  102.93it/s]
 31%|###1      |  : 314/999 [00:02<00:06,  103.60it/s]
 32%|###1      |  : 317/999 [00:03<00:06,  102.74it/s]
 32%|###2      |  : 321/999 [00:03<00:06,  103.42it/s]
 32%|###2      |  : 324/999 [00:03<00:06,  102.57it/s]
 33%|###2      |  : 328/999 [00:03<00:06,  103.26it/s]
 33%|###3      |  : 331/999 [00:03<00:06,  102.42it/s]
 34%|###3      |  : 335/999 [00:03<00:06,  103.12it/s]
 34%|###3      |  : 339/999 [00:03<00:06,  103.78it/s]
 34%|###4      |  : 342/999 [00:03<00:06,  102.91it/s]
 35%|###4      |  : 346/999 [00:03<00:06,  103.58it/s]
 35%|###4      |  : 349/999 [00:03<00:06,  102.72it/s]
 35%|###5      |  : 353/999 [00:03<00:06,  103.41it/s]
 36%|###5      |  : 357/999 [00:03<00:06,  104.05it/s]
 36%|###6      |  : 360/999 [00:03<00:06,  103.17it/s]
 36%|###6      |  : 364/999 [00:03<00:06,  103.83it/s]
 37%|###6      |  : 367/999 [00:03<00:06,  102.95it/s]
 37%|###7      |  : 371/999 [00:03<00:06,  103.62it/s]
 38%|###7      |  : 375/999 [00:03<00:05,  104.27it/s]
 38%|###7      |  : 378/999 [00:03<00:06,  103.37it/s]
 38%|###8      |  : 382/999 [00:03<00:05,  104.04it/s]
 39%|###8      |  : 386/999 [00:03<00:05,  104.66it/s]
 39%|###8      |  : 389/999 [00:03<00:05,  103.73it/s]
 39%|###9      |  : 393/999 [00:03<00:05,  104.38it/s]
 40%|###9      |  : 396/999 [00:03<00:05,  103.47it/s]
 40%|####      |  : 400/999 [00:03<00:05,  104.13it/s]
 40%|####      |  : 404/999 [00:03<00:05,  104.76it/s]
 41%|####      |  : 407/999 [00:03<00:05,  103.83it/s]
 41%|####1     |  : 411/999 [00:03<00:05,  104.47it/s]
 42%|####1     |  : 415/999 [00:03<00:05,  105.09it/s]
 42%|####1     |  : 418/999 [00:03<00:05,  104.11it/s]
 42%|####2     |  : 422/999 [00:03<00:05,  104.74it/s]
 43%|####2     |  : 426/999 [00:04<00:05,  105.35it/s]
 43%|####2     |  : 429/999 [00:04<00:05,  104.37it/s]
 43%|####3     |  : 433/999 [00:04<00:05,  104.98it/s]
 44%|####3     |  : 437/999 [00:04<00:05,  105.57it/s]
 44%|####4     |  : 440/999 [00:04<00:05,  104.57it/s]
 44%|####4     |  : 443/999 [00:04<00:05,  103.65it/s]
 45%|####4     |  : 447/999 [00:04<00:05,  104.31it/s]
 45%|####5     |  : 451/999 [00:04<00:05,  104.93it/s]
 45%|####5     |  : 454/999 [00:04<00:05,  103.99it/s]
 46%|####5     |  : 458/999 [00:04<00:05,  104.62it/s]
 46%|####6     |  : 462/999 [00:04<00:05,  105.24it/s]
 47%|####6     |  : 465/999 [00:04<00:05,  104.26it/s]
 47%|####6     |  : 469/999 [00:04<00:05,  104.89it/s]
 47%|####7     |  : 473/999 [00:04<00:04,  105.49it/s]
 48%|####7     |  : 476/999 [00:04<00:05,  104.51it/s]
 48%|####7     |  : 479/999 [00:04<00:05,  103.59it/s]
 48%|####8     |  : 483/999 [00:04<00:04,  104.23it/s]
 49%|####8     |  : 487/999 [00:04<00:04,  104.85it/s]
 49%|####9     |  : 490/999 [00:04<00:04,  103.89it/s]
 49%|####9     |  : 494/999 [00:04<00:04,  104.53it/s]
 50%|####9     |  : 498/999 [00:04<00:04,  105.14it/s]
 50%|#####     |  : 501/999 [00:04<00:04,  104.17it/s]
 51%|#####     |  : 505/999 [00:04<00:04,  104.80it/s]
 51%|#####     |  : 508/999 [00:04<00:04,  103.84it/s]
 51%|#####1    |  : 512/999 [00:04<00:04,  104.49it/s]
 52%|#####1    |  : 516/999 [00:04<00:04,  105.10it/s]
 52%|#####1    |  : 519/999 [00:04<00:04,  104.15it/s]
 52%|#####2    |  : 523/999 [00:04<00:04,  104.78it/s]
 53%|#####2    |  : 526/999 [00:04<00:04,  103.83it/s]
 53%|#####3    |  : 530/999 [00:05<00:04,  104.47it/s]
 53%|#####3    |  : 533/999 [00:05<00:04,  103.55it/s]
 54%|#####3    |  : 537/999 [00:05<00:04,  104.20it/s]
 54%|#####4    |  : 540/999 [00:05<00:04,  103.30it/s]
 54%|#####4    |  : 544/999 [00:05<00:04,  103.95it/s]
 55%|#####4    |  : 548/999 [00:05<00:04,  104.59it/s]
 55%|#####5    |  : 551/999 [00:05<00:04,  103.66it/s]
 56%|#####5    |  : 555/999 [00:05<00:04,  104.31it/s]
 56%|#####5    |  : 558/999 [00:05<00:04,  103.40it/s]
 56%|#####6    |  : 561/999 [00:05<00:04,  102.55it/s]
 57%|#####6    |  : 565/999 [00:05<00:04,  103.23it/s]
 57%|#####6    |  : 569/999 [00:05<00:04,  103.90it/s]
 57%|#####7    |  : 572/999 [00:05<00:04,  103.01it/s]
 58%|#####7    |  : 576/999 [00:05<00:04,  103.67it/s]
 58%|#####8    |  : 580/999 [00:05<00:04,  104.31it/s]
 58%|#####8    |  : 583/999 [00:05<00:04,  103.41it/s]
 59%|#####8    |  : 587/999 [00:05<00:03,  104.06it/s]
 59%|#####9    |  : 591/999 [00:05<00:03,  104.69it/s]
 59%|#####9    |  : 594/999 [00:05<00:03,  103.76it/s]
 60%|#####9    |  : 598/999 [00:05<00:03,  104.41it/s]
 60%|######    |  : 602/999 [00:05<00:03,  105.03it/s]
 61%|######    |  : 605/999 [00:05<00:03,  104.08it/s]
 61%|######    |  : 609/999 [00:05<00:03,  104.71it/s]
 61%|######1   |  : 613/999 [00:05<00:03,  105.32it/s]
 62%|######1   |  : 617/999 [00:05<00:03,  105.90it/s]
 62%|######2   |  : 620/999 [00:05<00:03,  104.89it/s]
 62%|######2   |  : 624/999 [00:05<00:03,  105.50it/s]
 63%|######2   |  : 628/999 [00:05<00:03,  106.08it/s]
 63%|######3   |  : 632/999 [00:05<00:03,  106.63it/s]
 64%|######3   |  : 635/999 [00:05<00:03,  105.57it/s]
 64%|######3   |  : 639/999 [00:06<00:03,  106.14it/s]
 64%|######4   |  : 643/999 [00:06<00:03,  106.69it/s]
 65%|######4   |  : 646/999 [00:06<00:03,  105.62it/s]
 65%|######5   |  : 650/999 [00:06<00:03,  106.18it/s]
 65%|######5   |  : 654/999 [00:06<00:03,  106.73it/s]
 66%|######5   |  : 658/999 [00:06<00:03,  107.25it/s]
 66%|######6   |  : 661/999 [00:06<00:03,  106.14it/s]
 67%|######6   |  : 665/999 [00:06<00:03,  106.69it/s]
 67%|######6   |  : 668/999 [00:06<00:03,  105.61it/s]
 67%|######7   |  : 672/999 [00:06<00:03,  106.19it/s]
 68%|######7   |  : 676/999 [00:06<00:03,  106.74it/s]
 68%|######7   |  : 679/999 [00:06<00:03,  105.67it/s]
 68%|######8   |  : 683/999 [00:06<00:02,  106.24it/s]
 69%|######8   |  : 687/999 [00:06<00:02,  106.79it/s]
 69%|######9   |  : 690/999 [00:06<00:02,  105.72it/s]
 69%|######9   |  : 694/999 [00:06<00:02,  106.28it/s]
 70%|######9   |  : 697/999 [00:06<00:02,  105.22it/s]
 70%|#######   |  : 701/999 [00:06<00:02,  105.81it/s]
 71%|#######   |  : 705/999 [00:06<00:02,  106.37it/s]
 71%|#######   |  : 708/999 [00:06<00:02,  105.32it/s]
 71%|#######1  |  : 712/999 [00:06<00:02,  105.91it/s]
 72%|#######1  |  : 715/999 [00:06<00:02,  104.90it/s]
 72%|#######1  |  : 719/999 [00:06<00:02,  105.50it/s]
 72%|#######2  |  : 723/999 [00:06<00:02,  106.08it/s]
 73%|#######2  |  : 726/999 [00:06<00:02,  105.05it/s]
 73%|#######3  |  : 730/999 [00:06<00:02,  105.65it/s]
 73%|#######3  |  : 734/999 [00:06<00:02,  106.21it/s]
 74%|#######3  |  : 737/999 [00:06<00:02,  105.18it/s]
 74%|#######4  |  : 741/999 [00:06<00:02,  105.76it/s]
 75%|#######4  |  : 745/999 [00:06<00:02,  106.32it/s]
 75%|#######4  |  : 748/999 [00:07<00:02,  105.29it/s]
 75%|#######5  |  : 752/999 [00:07<00:02,  105.87it/s]
 76%|#######5  |  : 755/999 [00:07<00:02,  104.85it/s]
 76%|#######5  |  : 759/999 [00:07<00:02,  105.44it/s]
 76%|#######6  |  : 763/999 [00:07<00:02,  106.01it/s]
 77%|#######6  |  : 766/999 [00:07<00:02,  104.99it/s]
 77%|#######7  |  : 770/999 [00:07<00:02,  105.59it/s]
 77%|#######7  |  : 773/999 [00:07<00:02,  104.60it/s]
 78%|#######7  |  : 777/999 [00:07<00:02,  105.22it/s]
 78%|#######8  |  : 780/999 [00:07<00:02,  104.25it/s]
 78%|#######8  |  : 784/999 [00:07<00:02,  104.87it/s]
 79%|#######8  |  : 788/999 [00:07<00:02,  105.46it/s]
 79%|#######9  |  : 791/999 [00:07<00:01,  104.48it/s]
 80%|#######9  |  : 795/999 [00:07<00:01,  105.10it/s]
 80%|#######9  |  : 799/999 [00:07<00:01,  105.69it/s]
 80%|########  |  : 802/999 [00:07<00:01,  104.68it/s]
 81%|########  |  : 806/999 [00:07<00:01,  105.28it/s]
 81%|########1 |  : 810/999 [00:07<00:01,  105.85it/s]
 81%|########1 |  : 813/999 [00:07<00:01,  104.85it/s]
 82%|########1 |  : 817/999 [00:07<00:01,  105.45it/s]
 82%|########2 |  : 821/999 [00:07<00:01,  106.03it/s]
 82%|########2 |  : 824/999 [00:07<00:01,  105.01it/s]
 83%|########2 |  : 828/999 [00:07<00:01,  105.60it/s]
 83%|########3 |  : 832/999 [00:07<00:01,  106.17it/s]
 84%|########3 |  : 835/999 [00:07<00:01,  105.15it/s]
 84%|########3 |  : 839/999 [00:07<00:01,  105.74it/s]
 84%|########4 |  : 843/999 [00:07<00:01,  106.29it/s]
 85%|########4 |  : 846/999 [00:07<00:01,  105.24it/s]
 85%|########5 |  : 850/999 [00:07<00:01,  105.83it/s]
 85%|########5 |  : 854/999 [00:08<00:01,  106.39it/s]
 86%|########5 |  : 858/999 [00:08<00:01,  106.93it/s]
 86%|########6 |  : 861/999 [00:08<00:01,  105.85it/s]
 87%|########6 |  : 865/999 [00:08<00:01,  106.42it/s]
 87%|########6 |  : 869/999 [00:08<00:01,  106.94it/s]
 87%|########7 |  : 872/999 [00:08<00:01,  105.86it/s]
 88%|########7 |  : 876/999 [00:08<00:01,  106.42it/s]
 88%|########8 |  : 880/999 [00:08<00:01,  106.95it/s]
 88%|########8 |  : 883/999 [00:08<00:01,  105.84it/s]
 89%|########8 |  : 886/999 [00:08<00:01,  104.83it/s]
 89%|########9 |  : 890/999 [00:08<00:01,  105.43it/s]
 89%|########9 |  : 894/999 [00:08<00:00,  106.01it/s]
 90%|########9 |  : 897/999 [00:08<00:00,  104.98it/s]
 90%|######### |  : 901/999 [00:08<00:00,  105.58it/s]
 91%|######### |  : 905/999 [00:08<00:00,  106.15it/s]
 91%|######### |  : 908/999 [00:08<00:00,  105.10it/s]
 91%|#########1|  : 912/999 [00:08<00:00,  105.70it/s]
 92%|#########1|  : 916/999 [00:08<00:00,  106.27it/s]
 92%|#########1|  : 919/999 [00:08<00:00,  105.23it/s]
 92%|#########2|  : 923/999 [00:08<00:00,  105.81it/s]
 93%|#########2|  : 927/999 [00:08<00:00,  106.37it/s]
 93%|#########3|  : 930/999 [00:08<00:00,  105.33it/s]
 93%|#########3|  : 934/999 [00:08<00:00,  105.92it/s]
 94%|#########3|  : 938/999 [00:08<00:00,  106.47it/s]
 94%|#########4|  : 941/999 [00:08<00:00,  105.39it/s]
 95%|#########4|  : 945/999 [00:08<00:00,  105.98it/s]
 95%|#########4|  : 949/999 [00:08<00:00,  106.54it/s]
 95%|#########5|  : 952/999 [00:08<00:00,  105.47it/s]
 96%|#########5|  : 956/999 [00:08<00:00,  106.04it/s]
 96%|#########6|  : 960/999 [00:08<00:00,  106.59it/s]
 96%|#########6|  : 963/999 [00:09<00:00,  105.53it/s]
 97%|#########6|  : 967/999 [00:09<00:00,  106.09it/s]
 97%|#########7|  : 971/999 [00:09<00:00,  106.63it/s]
 97%|#########7|  : 974/999 [00:09<00:00,  105.56it/s]
 98%|#########7|  : 978/999 [00:09<00:00,  106.13it/s]
 98%|#########8|  : 982/999 [00:09<00:00,  106.68it/s]
 99%|#########8|  : 985/999 [00:09<00:00,  105.61it/s]
 99%|#########8|  : 989/999 [00:09<00:00,  106.17it/s]
 99%|#########9|  : 993/999 [00:09<00:00,  106.72it/s]
100%|#########9|  : 996/999 [00:09<00:00,  105.65it/s]
100%|##########|  : 999/999 [00:09<00:00,  107.23it/s]
100%|##########|  : 999/999 [00:09<00:00,  106.80it/s]
Computing cluster p-values
Done.

Note. The same functions work with source estimate. The only differences are the origin of the data, the size, and the adjacency definition. It can be used for single trials or for groups of subjects.

Visualize clusters

# configure variables for visualization
colors = {"Aud": "crimson", "Vis": 'steelblue'}
linestyles = {"L": '-', "R": '--'}

# organize data for plotting
evokeds = {cond: epochs[cond].average() for cond in event_id}

# loop over clusters
for i_clu, clu_idx in enumerate(good_cluster_inds):
    # unpack cluster information, get unique indices
    time_inds, space_inds = np.squeeze(clusters[clu_idx])
    ch_inds = np.unique(space_inds)
    time_inds = np.unique(time_inds)

    # get topography for F stat
    f_map = T_obs[time_inds, ...].mean(axis=0)

    # get signals at the sensors contributing to the cluster
    sig_times = epochs.times[time_inds]

    # create spatial mask
    mask = np.zeros((f_map.shape[0], 1), dtype=bool)
    mask[ch_inds, :] = True

    # initialize figure
    fig, ax_topo = plt.subplots(1, 1, figsize=(10, 3))

    # plot average test statistic and mark significant sensors
    f_evoked = mne.EvokedArray(f_map[:, np.newaxis], epochs.info, tmin=0)
    f_evoked.plot_topomap(times=0, mask=mask, axes=ax_topo, cmap='Reds',
                          vmin=np.min, vmax=np.max, show=False,
                          colorbar=False, mask_params=dict(markersize=10))
    image = ax_topo.images[0]

    # create additional axes (for ERF and colorbar)
    divider = make_axes_locatable(ax_topo)

    # add axes for colorbar
    ax_colorbar = divider.append_axes('right', size='5%', pad=0.05)
    plt.colorbar(image, cax=ax_colorbar)
    ax_topo.set_xlabel(
        'Averaged F-map ({:0.3f} - {:0.3f} s)'.format(*sig_times[[0, -1]]))

    # add new axis for time courses and plot time courses
    ax_signals = divider.append_axes('right', size='300%', pad=1.2)
    title = 'Cluster #{0}, {1} sensor'.format(i_clu + 1, len(ch_inds))
    if len(ch_inds) > 1:
        title += "s (mean)"
    plot_compare_evokeds(evokeds, title=title, picks=ch_inds, axes=ax_signals,
                         colors=colors, linestyles=linestyles, show=False,
                         split_legend=True, truncate_yaxis='auto')

    # plot temporal cluster extent
    ymin, ymax = ax_signals.get_ylim()
    ax_signals.fill_betweenx((ymin, ymax), sig_times[0], sig_times[-1],
                             color='orange', alpha=0.3)

    # clean up viz
    mne.viz.tight_layout(fig=fig)
    fig.subplots_adjust(bottom=.05)
    plt.show()
  • 0.000 s, Cluster #1, 3 sensors (mean) (GFP)
  • 0.000 s, Cluster #2, 15 sensors (mean) (GFP)
  • 0.000 s, Cluster #3, 1 sensor
  • 0.000 s, Cluster #4, 3 sensors (mean) (GFP)
  • 0.000 s, Cluster #5, 1 sensor
  • 0.000 s, Cluster #6, 2 sensors (mean) (GFP)
  • 0.000 s, Cluster #7, 1 sensor
  • 0.000 s, Cluster #8, 1 sensor

Out:

combining channels using "gfp"
combining channels using "gfp"
combining channels using "gfp"
combining channels using "gfp"
combining channels using "gfp"
combining channels using "gfp"
combining channels using "gfp"
combining channels using "gfp"
combining channels using "gfp"
combining channels using "gfp"
combining channels using "gfp"
combining channels using "gfp"
combining channels using "gfp"
combining channels using "gfp"
combining channels using "gfp"
combining channels using "gfp"

Exercises

  • What is the smallest p-value you can obtain, given the finite number of permutations?

  • use an F distribution to compute the threshold by traditional significance levels. Hint: take a look at scipy.stats.f

Total running time of the script: ( 0 minutes 20.242 seconds)

Estimated memory usage: 128 MB

Gallery generated by Sphinx-Gallery