mne.viz.plot_channel_labels_circle#
- mne.viz.plot_channel_labels_circle(labels, colors=None, picks=None, **kwargs)[source]#
Plot labels for each channel in a circle plot.
Note
This primarily makes sense for sEEG channels where each channel can be assigned an anatomical label as the electrode passes through various brain areas.
- Parameters:
- labels
dict Lists of labels (values) associated with each channel (keys).
- colors
dict The color (value) for each label (key).
- picks
list|tuple The channels to consider.
- **kwargskwargs
Keyword arguments for
mne_connectivity.viz.plot_connectivity_circle().
- labels
- Returns:
- figinstance of
matplotlib.figure.Figure The figure handle.
- axesinstance of
matplotlib.projections.polar.PolarAxes The subplot handle.
- figinstance of