首页 > 解决方案 > mne.viz.plot_topomap 的颜色条?Python

问题描述

我有两个关于原始(非诱发)数据的 mne topomap 函数的问题。

1.有没有办法在拓扑图中添加颜色条?使用诱发数据是可能的,但这里我有原始数据... 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)

如果您认为有更好的方法来绘制地形图,我可以为地形图使用不同的功能:)

非常感谢你!!

标签: plotrawmne-python

解决方案



推荐阅读