I am using mne
package in Python for EEG plotting. I have a matplotlib figure instance and I want to plot two of them side by side and draw lines over it to show connections.
>>import mne
>>import matplotlib.pyplot as plt
>>a = mne.channels.read_montage('standard_1020')
>>b = a.plot()
Now I have b of type <class 'matplotlib.figure.Figure'>
. I want to open two such side by side and draw lines over it.