Using contralateral referencing for EEG#

Instead of using a single reference electrode for all channels, some researchers reference the EEG electrodes in each hemisphere to an electrode in the contralateral hemisphere (often an electrode over the mastoid bone; this is common in sleep research for example). Here we demonstrate how to set a contralateral EEG reference.

# Authors: The MNE-Python contributors.
# License: BSD-3-Clause
# Copyright the MNE-Python contributors.

import mne

ssvep_folder = mne.datasets.ssvep.data_path()
ssvep_data_raw_path = (
    ssvep_folder / "sub-02" / "ses-01" / "eeg" / "sub-02_ses-01_task-ssvep_eeg.vhdr"
)
raw = mne.io.read_raw(ssvep_data_raw_path, preload=True)
_ = raw.set_montage("easycap-M1")

The electrodes TP9 and TP10 are near the mastoids so we’ll use them as our contralateral reference channels. Then we’ll create our hemisphere groups.

raw.rename_channels({"TP9": "M1", "TP10": "M2"})

# this splits electrodes into 3 groups; left, midline, and right
ch_names = mne.channels.make_1020_channel_selections(raw.info, return_ch_names=True)

# remove the ref channels from the lists of to-be-rereferenced channels
ch_names["Left"].remove("M1")
ch_names["Right"].remove("M2")

Finally we do the referencing. For the midline channels we’ll reference them to the mean of the two mastoid channels; the left and right hemispheres we’ll reference to the single contralateral mastoid channel.

# midline referencing to mean of mastoids:
mastoids = ["M1", "M2"]
rereferenced_midline_chs = (
    raw.copy()
    .pick(mastoids + ch_names["Midline"])
    .set_eeg_reference(mastoids)
    .drop_channels(mastoids)
)

# contralateral referencing (alters channels in `raw` in-place):
for ref, hemi in dict(M2=ch_names["Left"], M1=ch_names["Right"]).items():
    mne.set_bipolar_reference(raw, anode=hemi, cathode=[ref] * len(hemi), copy=False)
# strip off '-M1' and '-M2' suffixes added to each bipolar-referenced channel
raw.rename_channels(lambda ch_name: ch_name.split("-")[0])

# replace unreferenced midline with rereferenced midline
_ = raw.drop_channels(ch_names["Midline"]).add_channels([rereferenced_midline_chs])

Make sure the channel locations still look right:

fig = raw.plot_sensors(show_names=True, sphere="eeglab")

Estimated memory usage: 0 MB

Gallery generated by Sphinx-Gallery