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
- info
mne.Info The
mne.Infoobject with information about the sensors and methods of measurement.- 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
listofstr|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.
- info
- Returns
- layout
Layout The generated Layout.
- layout
See also