You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm trying to use this package to read in EDF data and create quality control visualizations, but I need the TRIAL_INDEX and TIMESTAMP. If I use the Eyelink Data Viewer, I can get these variables as a column in the output csv, but I'd like to have something that doesn't rely on that GUI. I was wondering if that's possible with this package, or if there's reasonable changes to the source code to be able to get those.
Happy to make any changes and submit a PR for them if there's a reasonable way to do that, and if that'd be of interest to other users!
I agree that having information about trial start/stops is important and has been on the back of my mind as a TODO..
Per the Eyelink EDFAPI C libary manual, I think the most basic way to support this is to add START and END events, similar to what you see in an ASCII (.asc) version of an EDF file. Then one could access this with my_edf_obj["discrete"]["start"] to get a list of trial start times, which you could easily index yourself.
Does this sound like it is what you are looking for?
A class was already created to extract this info from theRECORDINGS Structure created by the EDFAPI C library, but I don't think we currently use it at all:
Hey! Thanks for making this - it's very helpful.
I'm trying to use this package to read in EDF data and create quality control visualizations, but I need the TRIAL_INDEX and TIMESTAMP. If I use the Eyelink Data Viewer, I can get these variables as a column in the output csv, but I'd like to have something that doesn't rely on that GUI. I was wondering if that's possible with this package, or if there's reasonable changes to the source code to be able to get those.
Happy to make any changes and submit a PR for them if there's a reasonable way to do that, and if that'd be of interest to other users!
Tagging my collaborators: @baharsener, @lydiazhanguw, @BrendaQiu.
The text was updated successfully, but these errors were encountered: