EEG Data Cleaning
Hey everyone,
I've recently started working on an EEG project. I need to record three datasets:
One with open eye,One with closed eyes, One while performing the test
I plan to clean the data using Python. Should I clean each dataset separately or merge them first and then clean them together?
Comments
Hi Gaia, as long as your filters and DSP processing has fixed parameters, it should not make any difference. If the processing is 'adaptive' to the content, then it is better to separate.
William
Thanks for your reply, William. Based on your suggestion, I will separate the datasets since it’s applicable in both cases.