在 mne 中使用 raw.plot() 时,如何将 EEG 信号可视化为正弦波而不是线?

问题描述

df_subject_channels=pd.read_csv(path_0,sep=',',decimal=".")
print('size of channel data',df_subject_channels.shape)
#channels labels 
ch_labels=list(df_subject_channels.labels)
internal_montage = mne.channels.make_standard_montage('GSN-HydroCel-129')
s_freq=250
#create info for object
info = mne.create_info(ch_names=ch_labels,sfreq=s_freq,ch_types='eeg',montage=internal_montage)

raw= mne.io.RawArray(dat_test,info)

raw.plot();

The output I am getting,click here

我正在寻找这样的形象: The output I want,click here

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)