-
Notifications
You must be signed in to change notification settings - Fork 1.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[ENH] Create functions to read Epochs and Evoked Neuroscan formats #12392
base: main
Are you sure you want to change the base?
Conversation
for more information, see https://pre-commit.ci
for more information, see https://pre-commit.ci
@withmywoessner you wrote a comment that I got pinged on but it's gone, did you delete it? If so hopefully it's because it's resolved 🙂 Or maybe #12393 is related? In any case happy to help if needed |
@larsoner Just curious, do you know why there is no |
it was introduced when we created the EvokedArray class.
… Message ID: ***@***.***>
|
There is @agramfort? I was just curious why |
I think because evoked data are always preloaded we decided Evoked could just be the base for other classes like EvokedArray or EvokedMFF (if we have that class, can't remember). For epochs and raw which allow loading on the fly things are more complicated. In principle we could have BaseEvoked and Evoked would inherit from that (and otherwise just be a |
Thnaks! @larsoner So you do think I should make a |
make an EvokedArray as done eg by read_evoked_besa
… Message ID: ***@***.***>
|
I had another question about how Questions: Do you know if other evoked file readers deal with this? I didn't see any. Also, this is probably unnecessary, but do you think it could be worthwhile to add a nreject parameter to the EvokedArray to include the number of rejected epochs at some point? |
Also let me know if I am pinging too much. I never know if it's better just to post a reply without the ping. |
Evoked only knows nave so not the number of dropped. The Epochs do know
this. Yes you could use the comment for this...
… Message ID: ***@***.***>
|
@withmywoessner Can you say more about why you want to preserve that information? If you loaded a Neuroscan |
@drammock I think I mainly just want it for quality control purposes to see how many epochs. |
ok, in that case I would agree with @agramfort: put the info in the |
Reference issue
#12367
What does this implement/fix?
Add functions to read .avg (Evoked) and .eeg (Epochs) Neuroscan files