mne.pick_info¶
- mne.pick_info(info, sel=(), copy=True, verbose=None)[source]¶
Restrict an info structure to a selection of channels.
- Parameters
- info
dict
Info structure from evoked or raw data.
- sel
list
ofint
|None
Indices of channels to include. If None, all channels are included.
- copybool
If copy is False, info is modified inplace.
- verbosebool,
str
,int
, orNone
If not None, override default verbose level (see
mne.verbose()
and Logging documentation for more). If used, it should be passed as a keyword-argument only.
- info
- Returns
- res
dict
Info structure restricted to a selection of channels.
- res