Note
Go to the end to download the full example code.
T-test
This example show a cluster-based permutation test for a simple design (two conditions). The example uses simulated data meant to vaguely resemble data from an N400 experiment (not intended as a physiologically realistic simulation).
# sphinx_gallery_thumbnail_number = 3
from eelbrain import *
Simulated data
Each function call to datasets.simulate_erp() generates a dataset
equivalent to an N400 experiment for one subject.
The seed argument determines the random noise that is added to the data.
ds = datasets.simulate_erp(seed=0)
print(ds.summary())
Key Type Values
-------------------------------------------------------------------------
eeg NDVar 140 time, 65 sensor; -2.18933e-05 - 2.21674e-05
cloze Var 0.00563694 - 0.997675
predictability Factor high:40, low:40
n_chars Var 3:10, 4:20, 5:22, 6:16, 7:12
-------------------------------------------------------------------------
Dataset: 80 cases
A singe trial of data:
p = plot.TopoButterfly('eeg[0]', data=ds, t=0.400)

The Dataset.aggregate() method computes condition averages when sorting
the data into conditions of interest. In our case, the predictability variable
specified conditions 'high' and 'low' cloze:
print(ds.aggregate('predictability'))
# n cloze predictability n_chars
-------------------------------------------
0 40 0.88051 high 5
1 40 0.17241 low 5
-------------------------------------------
NDVars: eeg
Group level data
This loop simulates a multi-subject experiment.
It generates data and collects condition averages for 10 virtual subjects.
For group level analysis, the collected data are combined in a Dataset:
dss = []
for subject in range(10):
# generate data for one subject
ds = datasets.simulate_erp(seed=subject)
# average across trials to get condition means
ds_agg = ds.aggregate('predictability')
# add the subject name as variable
ds_agg[:, 'subject'] = f'S{subject:02}'
dss.append(ds_agg)
ds = combine(dss)
# make subject a random factor (to treat it as random effect for ANOVA)
ds['subject'].random = True
ds.head()
Re-reference the EEG data (i.e., subtract the mean of the two mastoid channels):
Spatio-temporal cluster based test
Cluster-based tests are based on identifying clusters of meaningful effects, i.e.,
groups of adjacent sensors that show the same effect (see testnd for references).
In order to find clusters, the algorithm needs to know which channels are
neighbors. This information is refered to as the sensor adjacency (i.e., which sensors
are connected). The adjacency graph can be visualized to confirm that it is set correctly.
p = plot.SensorMap(ds['eeg'], adjacency=True)

With the correct adjacency, we can now compute a cluster-based permutation test for a related measures t-test:
res = testnd.TTestRelated(
'eeg', 'predictability', 'low', 'high', match='subject', data=ds,
pmin=0.05, # Use uncorrected p = 0.05 as threshold for forming clusters
tstart=0.100, # Find clusters in the time window from 100 ...
tstop=0.600, # ... to 600 ms
)
Plot the test result. The top two rows show the two condition averages. The bottom butterfly plot shows the difference with only significant regions in color. The corresponding topomap shows the topography at the marked time point, with the significant region circled (in an interactive environment, the mouse can be used to update the time point shown).
p = plot.TopoButterfly(res, clip='circle', t=0.400)

Generate a table with all significant clusters:
Retrieve the cluster map using its ID and visualize the spatio-temporal extent of the cluster:
cluster_id = clusters[0, 'id']
cluster = res.cluster(cluster_id)
p = plot.TopoArray(cluster, interpolation='nearest', t=[0.350, 0.400, 0.450, None])
# plot the colorbar next to the right-most sensor plot
p_cb = p.plot_colorbar(right_of=p.axes[3])

Using a cluster as functional ROI
Often it is desirable to summarize values in a cluster. This is especially useful in more complex designs. For example, after finding a signficant interaction effect in an ANOVA, one might want to follow up with a pairwise test of the value in the cluster. This can often be achieved using binary masks based on the cluster. Using the cluster identified above, generate a binary mask:
mask = cluster != 0
p = plot.TopoArray(mask, cmap='Wistia', t=[0.350, 0.400, 0.450])

Such a spatio-temporal boolean mask can be used
to extract the value in the cluster for each condition/participant.
Since mask contains both time and sensor dimensions, using it with
the NDVar.mean() method collapses across these dimensions and
returns a scalar for each case (i.e., for each condition/subject).

Similarly, a mask consisting of a cluster of sensors can be used to
visualize the time course in that region of interest. A straight forward
choice is to use all sensors that were part of the cluster (mask)
at any point in time:
roi = mask.any('time')
p = plot.Topomap(roi, cmap='Wistia')

When using a mask that ony contains a sensor dimension (roi),
NDVar.mean() collapses across sensors and returns a value for each time
point, i.e. the time course in sensors involved in the cluster:
ds['cluster_timecourse'] = ds['eeg'].mean(roi)
p = plot.UTSStat('cluster_timecourse', 'predictability', match='subject', data=ds, frame='t')
# mark the duration of the spatio-temporal cluster
p.set_clusters(clusters, y=0.25e-6)

Now visualize the cluster topography, marking significant sensors:
time_window = (clusters[0, 'tstart'], clusters[0, 'tstop'])
c1_topo = res.c1_mean.mean(time=time_window)
c0_topo = res.c0_mean.mean(time=time_window)
diff_topo = res.difference.mean(time=time_window)
p = plot.Topomap([c1_topo, c0_topo, diff_topo], axtitle=['Low cloze', 'High cloze', 'Low - high'], columns=3)
p.mark_sensors(roi, -1)

Temporal cluster based test
Alternatively, if a spatial region of interest exists, a univariate time
course can be extracted and submitted to a temporal cluster based test. For
example, the N400 is typically expected to be strong at sensor Cz:
ds['eeg_cz'] = ds['eeg'].sub(sensor='Cz')
res_timecoure = testnd.TTestRelated(
'eeg_cz', 'predictability', 'low', 'high', match='subject', data=ds,
pmin=0.05, # Use uncorrected p = 0.05 as threshold for forming clusters
tstart=0.100, # Find clusters in the time window from 100 ...
tstop=0.600, # ... to 600 ms
)
clusters = res_timecoure.find_clusters(0.05)
clusters
p = plot.UTSStat('eeg_cz', 'predictability', match='subject', data=ds, frame='t')
p.set_clusters(clusters, y=0.25e-6)