- MNE-Python version: 0.22.0
- operating system: Windows
Thanks for solving my last question about ICA in the previous post.
Now I got an EEG graph about comparing odd and normal P3 data!
However, the result seems not clear to me yet.
- The ICA result shows that there are no bad epochs and Zeroing out 0 ICA components when applying it. On the other hand, the epoch function dropped 614. I rejected some components when using ICA in MATLAB EEGLAB. So I’m a bit confused… In other questions, I saw setting Fp1,2 to EoG and use EOG_Epoch function. Will it solve this problem??
- the Quick-20 EEG device I’m using doesn’t have EOG signals…
...
Rejecting epoch based on EEG : ['Fp1']
Rejecting epoch based on EEG : ['Fp1']
Rejecting epoch based on EEG : ['Fp1']
Rejecting epoch based on EEG : ['Fp1']
Rejecting epoch based on EEG : ['Fp1']
Rejecting epoch based on EEG : ['Fp1']
Rejecting epoch based on EEG : ['Fp1']
Rejecting epoch based on EEG : ['Fp1']
Rejecting epoch based on EEG : ['Fp1']
Rejecting epoch based on EEG : ['Fp1']
Rejecting epoch based on EEG : ['Fp1', 'FC6', 'Cz', 'PO8', 'PO3', 'PO4', 'O1', 'O2']
614 bad epochs dropped
Fitting ICA to data using 30 channels (please be patient, this may take a while)
<ipython-input-15-8aa56310aeb3>:1: DeprecationWarning: max_pca_components (30) is deprecated and will be removed in 0.23, use n_pca_components instead
ica=ICA(n_components=30, max_pca_components=30, method='fastica', random_state=89).fit(epochs)#define the parameter of ica and fit it to epochs
Selecting by number: 30 components
Fitting ICA took 16.0s.
Not setting metadata
Not setting metadata
475 matching events found
No baseline correction applied
0 projection items activated
0 bad epochs dropped
Applying ICA to Epochs instance
Transforming to ICA space (30 components)
Zeroing out 0 ICA components
Projecting back using 30 PCA components
- Also, in addition, I’m using Quick-20 EEG device. Therefore, I’m using read_raw_brainvision() to get the EEG data. However, this doesn’t have the sensor location data… I received .ced file from the manufacturer, but is it possible to import it into the MNE imported dataset??
If not possible, I’m thinking of using MATLAB to merge EEG data and .ced file and export it to .set and reimport it in MNE… (too much uncomfortable procedure…)