mne.viz.plot_sensors_connectivity

mne.viz.plot_sensors_connectivity(info, con, picks=None, cbar_label='Connectivity')[source]

Warning

DEPRECATED: Functions in the mne.connectivity sub-module have moved to a new package (mne-connectivity) and will be removed in MNE-Python version 0.25. Install the new connectivity package by running pip install mne-connectivity in a system terminal or anaconda prompt..

Visualize the sensor connectivity in 3D.

Parameters
infomne.Info

The mne.Info object with information about the sensors and methods of measurement.

conarray, shape (n_channels, n_channels)

The computed connectivity measure(s).

picksstr | list | slice | None

Channels to include. Slices and lists of integers will be interpreted as channel indices. In lists, channel type strings (e.g., ['meg', 'eeg']) will pick channels of those types, channel name strings (e.g., ['MEG0111', 'MEG2623'] will pick the given channels. Can also be the string values “all” to pick all channels, or “data” to pick data channels. None (default) will pick good data channels. Note that channels in info['bads'] will be included if their names or indices are explicitly provided. Indices of selected channels.

cbar_labelstr

Label for the colorbar.

Returns
figinstance of mayavi.mlab.Figure

The mayavi figure.