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