Select Electrodes and Resampling#

Within paradigm, it is possible to restrict analysis only to a subset of electrodes and to resample to a specific sampling rate. There is also a utility function to select common electrodes shared between datasets. This tutorial demonstrates how to use this functionality.

# Authors: Sylvain Chevallier <sylvain.chevallier@uvsq.fr>
#
# License: BSD (3-clause)
import matplotlib.pyplot as plt
from mne.decoding import CSP
from pyriemann.estimation import Covariances
from pyriemann.tangentspace import TangentSpace
from sklearn.discriminant_analysis import LinearDiscriminantAnalysis as LDA
from sklearn.linear_model import LogisticRegression as LR
from sklearn.pipeline import make_pipeline

import moabb.analysis.plotting as moabb_plt
from moabb.datasets import BNCI2014_001, Zhou2016
from moabb.datasets.utils import find_intersecting_channels
from moabb.evaluations import WithinSessionEvaluation
from moabb.paradigms import LeftRightImagery

Datasets#

Load 2 subjects of BNCI 2014-004 and Zhou2016 datasets, with 2 sessions each

Paradigm#

Restrict further analysis to specified channels, here C3, C4, and Cz. Also, use a specific resampling. In this example, all datasets are set to 200 Hz.

paradigm = LeftRightImagery(channels=["C3", "C4", "Cz"], resample=200.0)

Evaluation#

The evaluation is conducted on with CSP+LDA, only on the 3 electrodes, with a sampling rate of 200 Hz.

evaluation = WithinSessionEvaluation(paradigm=paradigm, datasets=datasets)
csp_lda = make_pipeline(CSP(n_components=2), LDA())
ts_lr = make_pipeline(
    Covariances(estimator="oas"), TangentSpace(metric="riemann"), LR(C=1.0)
)
results = evaluation.process({"csp+lda": csp_lda, "ts+lr": ts_lr})
print(results.head())
Zhou2016-WithinSession:   0%|          | 0/2 [00:00<?, ?it/s]
Zhou2016-WithinSession:  50%|█████     | 1/2 [00:02<00:02,  2.41s/it]
Zhou2016-WithinSession: 100%|██████████| 2/2 [00:04<00:00,  2.20s/it]
Zhou2016-WithinSession: 100%|██████████| 2/2 [00:04<00:00,  2.23s/it]

BNCI2014-001-WithinSession:   0%|          | 0/2 [00:00<?, ?it/s]
BNCI2014-001-WithinSession:  50%|█████     | 1/2 [00:03<00:03,  3.36s/it]
BNCI2014-001-WithinSession: 100%|██████████| 2/2 [00:06<00:00,  3.35s/it]
BNCI2014-001-WithinSession: 100%|██████████| 2/2 [00:06<00:00,  3.35s/it]
      score      time  samples subject  ... channels  n_sessions   dataset pipeline
0  0.850505  0.065906    119.0       1  ...        3           3  Zhou2016    ts+lr
1  0.922000  0.053262    100.0       1  ...        3           3  Zhou2016    ts+lr
2  0.948000  0.051786    100.0       1  ...        3           3  Zhou2016    ts+lr
3  0.908000  0.053956    100.0       2  ...        3           3  Zhou2016    ts+lr
4  0.822222  0.048011     90.0       2  ...        3           3  Zhou2016    ts+lr

[5 rows x 9 columns]

Electrode Selection#

It is possible to select the electrodes that are shared by all datasets using the find_intersecting_channels function. Datasets that have 0 overlap with others are discarded. It returns the set of common channels, as well as the list of datasets with valid channels.

electrodes, datasets = find_intersecting_channels(datasets)
evaluation = WithinSessionEvaluation(
    paradigm=paradigm, datasets=datasets, overwrite=True, suffix="resample"
)
results = evaluation.process({"csp+lda": csp_lda, "ts+lr": ts_lr})
print(results.head())
Zhou2016-WithinSession:   0%|          | 0/2 [00:00<?, ?it/s]
Zhou2016-WithinSession:  50%|█████     | 1/2 [00:02<00:02,  2.46s/it]
Zhou2016-WithinSession: 100%|██████████| 2/2 [00:04<00:00,  2.25s/it]
Zhou2016-WithinSession: 100%|██████████| 2/2 [00:04<00:00,  2.28s/it]

BNCI2014-001-WithinSession:   0%|          | 0/2 [00:00<?, ?it/s]
BNCI2014-001-WithinSession:  50%|█████     | 1/2 [00:03<00:03,  3.32s/it]
BNCI2014-001-WithinSession: 100%|██████████| 2/2 [00:06<00:00,  3.34s/it]
BNCI2014-001-WithinSession: 100%|██████████| 2/2 [00:06<00:00,  3.34s/it]
      score      time  samples subject  ... channels  n_sessions   dataset pipeline
0  0.860480  0.065953    119.0       1  ...        3           3  Zhou2016    ts+lr
1  0.928000  0.055592    100.0       1  ...        3           3  Zhou2016    ts+lr
2  0.962000  0.052058    100.0       1  ...        3           3  Zhou2016    ts+lr
3  0.924000  0.054192    100.0       2  ...        3           3  Zhou2016    ts+lr
4  0.817284  0.046188     90.0       2  ...        3           3  Zhou2016    ts+lr

[5 rows x 9 columns]

Plot Results#

Compare the obtained results with the two pipelines, CSP+LDA and logistic regression computed in the tangent space of the covariance matrices.

fig = moabb_plt.paired_plot(results, "csp+lda", "ts+lr")
plt.show()
plot select electrodes resample

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

Estimated memory usage: 873 MB

Gallery generated by Sphinx-Gallery