mne.viz.plot_topomap 的颜色栏? Python

Colorbar for mne.viz.plot_topomap ? Python

我有两个关于原始(未诱发)数据的 mne 拓扑图函数的问题。

1.Is 有没有办法在顶图中添加颜色条?使用诱发数据是可能的,但这里我有原始数据...... 2. 传感器点可以画大一点吗?

这是代码(我希望这些信息足够了?):

ch_names = mat_data['EEG']['chanlocs']['labels']
info = mne.create_info(ch_names, ch_types=['eeg']*64 , sfreq=sampling_freq)
raw = mne.io.RawArray(data, info)
raw.set_montage('standard_1005')

%matplotlib qt
mne.viz.plot_topomap(tmp_data, raw.info, cmap='Spectral_r',sensors = True,vmin=16, vmax=26)

如果您认为有更好的绘制拓扑图的方法,我可以为拓扑图使用不同的函数:)

非常感谢!!

下面是这个问题的答案: https://mne.discourse.group/t/mne-viz-plot-topomap-and-color-bar/3141/4