mne.channels.make_eeg_layout¶
- mne.channels.make_eeg_layout(info, radius=0.5, width=None, height=None, exclude='bads', csd=False)[source]¶
Create .lout file from EEG electrode digitization.
- Parameters
- infoinstance of
Info
Measurement info (e.g., raw.info).
- radius
float
Viewport radius as a fraction of main figure height. Defaults to 0.5.
- width
float
|None
Width of sensor axes as a fraction of main figure height. By default, this will be the maximum width possible without axes overlapping.
- height
float
|None
Height of sensor axes as a fraction of main figure height. By default, this will be the maximum height possible without axes overlapping.
- exclude
list
ofstr
|str
List of channels to exclude. If empty do not exclude any. If ‘bads’, exclude channels in info[‘bads’] (default).
- csdbool
Whether the channels contain current-source-density-transformed data.
- infoinstance of
- Returns
- layout
Layout
The generated Layout.
- layout
See also