mne.channels.make_eeg_layout

mne.channels.make_eeg_layout(info, radius=0.5, width=None, height=None, exclude=’bads’)[source]

Create .lout file from EEG electrode digitization.

Parameters:

info : instance 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 withough axes overlapping.

exclude : list of string | str

List of channels to exclude. If empty do not exclude any. If ‘bads’, exclude channels in info[‘bads’] (default).

Returns:

layout : Layout

The generated Layout.