在使用 Python 的MNE中,一旦调用 def 完全执行,我想保持交互式绘图窗口打开。
但是,这无法通过以下代码实现:
def get_plot():
sample_data_folder = mne.datasets.sample.data_path()
sample_data_raw_file = os.path.join(sample_data_folder, 'MEG', 'sample',
'sample_audvis_raw.fif')
raw = mne.io.read_raw_fif(sample_data_raw_file)
raw.plot()
get_plot()
这样,一旦get_plot()
完成,绘图窗口就会自动关闭。
另外,我使用的是带有PyCharm 2020.1.3 的 Windows 10。
我可以知道如何处理这个问题吗?