mne.pick_channels#

mne.pick_channels(ch_names, include, exclude=[], ordered=False)[source]#

Pick channels by names.

Returns the indices of ch_names in include but not in exclude.

Parameters
ch_nameslist of str

List of channels.

includelist of str

List of channels to include (if empty include all available).

Note

This is to be treated as a set. The order of this list is not used or maintained in sel.

excludelist of str

List of channels to exclude (if empty do not exclude any channel). Defaults to [].

orderedbool

If true (default False), treat include as an ordered list rather than a set, and any channels from include are missing in ch_names an error will be raised.

New in version 0.18.

Returns
selarray of int

Indices of good channels.

Examples using mne.pick_channels#

The Info data structure

The Info data structure

The Info data structure
EEG processing and Event Related Potentials (ERPs)

EEG processing and Event Related Potentials (ERPs)

EEG processing and Event Related Potentials (ERPs)
DICS for power mapping

DICS for power mapping

DICS for power mapping
Show EOG artifact timing

Show EOG artifact timing

Show EOG artifact timing
Shifting time-scale in evoked data

Shifting time-scale in evoked data

Shifting time-scale in evoked data
Permutation T-test on sensor data

Permutation T-test on sensor data

Permutation T-test on sensor data