Browse Source

address copy_from_bbox error

Jack 1 tuần trước cách đây
mục cha
commit
c5a6112a15
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      03_get_neural_rdms.py

+ 1 - 1
03_get_neural_rdms.py

@@ -63,7 +63,7 @@ epos_concat = mne.concatenate_epochs(all_epos)
 # %%
 # for illustration
 
-fig = epos_concat.average().plot(picks = post_chs, time_unit='ms', highlight=(150, 225), show=False);
+fig = epos_concat.average().plot(picks = post_chs, time_unit='ms', highlight=(150, 225), show=False, selectable=False);
 fig.set_size_inches(2.4, 0.75)
 fig.savefig(op.join('fig', 'ERP.svg'))
 plt.close()