Tutorial

If you haven't already, download the ABRA eye-tracking package.


pip install abra


To start you will need to import ABRA package and read in you .asc eye-tracking data file.


import abra.data as abra

data = abra.read(filename)

'''
for user user defined trial makers

data = abra.read(filename, mode = u, start_msg = r"TRIAL \d{1,2} START", end_msg=r"TRIAL \d{1,2} END")
'''

A