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 unsure if this is the right place here or if I should file this over at itrackR.
I'd like to visualize eye tracking data and artificial gaze data computed by a model by using this visualization utility: https://github.com/ignacioxd/jivui
This tool needs the eye tracking data to be stored as JSON. Is this already somehow possible with edfR? If not: Do you want to implement it?
Maybe my request can actually already be satisfied by using different R packages. in that case I'm looking forward receiving some hints.
Thanks.
The text was updated successfully, but these errors were encountered:
Probably not enough demand to add this to edR or itrackR, but all the eye tracking data are stored as dataframes. If you use edf.batch for example, you can access the fixations/saccades/blinks pretty easily, then just convert those to JSON.
x <- edf.batch('path/to/file.edf')
fixes <- x$fixations
saccs <- x$saccades
Hi,
I'm unsure if this is the right place here or if I should file this over at itrackR.
I'd like to visualize eye tracking data and artificial gaze data computed by a model by using this visualization utility: https://github.com/ignacioxd/jivui
This tool needs the eye tracking data to be stored as JSON. Is this already somehow possible with edfR? If not: Do you want to implement it?
Maybe my request can actually already be satisfied by using different R packages. in that case I'm looking forward receiving some hints.
Thanks.
The text was updated successfully, but these errors were encountered: