我正在使用mne
Python 中的包进行脑电图绘图。我有一个 matplotlib 图形实例,我想并排绘制其中两个并在其上画线以显示连接。
>>import mne
>>import matplotlib.pyplot as plt
>>a = mne.channels.read_montage('standard_1020')
>>b = a.plot()
现在我有 b 类型<class 'matplotlib.figure.Figure'>
。我想并排打开两个这样的并在上面画线。