- MNE version:0.24.0
- operating system: Windows 10
Dear mne experts, can anyone help me with this problem?
My raw data seems alright and I applied ICA methods to erase the eye movement.
This is my raw data, it seems good here.
After filter and re-reference, I applied the ICA method, code here:
ica = mne.preprocessing.ICA(n_components=0.99999, method='picard', max_iter=1200)
ica.fit(raw_filter)
raw_filter.load_data()
ica.plot_components()
ica.plot_sources(raw_filter, show_scrollbars=True)
plt.show(block=True)
after ICA, the plot_components method seems normal, the result is:
But the plot_sources method returns straight lines which are really strange.
I don’t know what went wrong. Could anybody help me with this plzzzzzz?