mne.pick_info#
- mne.pick_info(info, sel=(), copy=True, verbose=None)[source]#
Restrict an info structure to a selection of channels.
- Parameters:
- info
mne.Info The
mne.Infoobject with information about the sensors and methods of measurement.- sel
listofint|None Indices of channels to include. If None, all channels are included.
- copy
bool If copy is False, info is modified inplace.
- verbose
bool|str|int|None Control verbosity of the logging output. If
None, use the default verbosity level. See the logging documentation andmne.verbose()for details. Should only be passed as a keyword argument.
- info
- Returns:
- res
dict Info structure restricted to a selection of channels.
- res