API#
This is the API documentation for the eyelinkio package, grouped thematically
by functionality. we use snake_case
for function names and CamelCase
for class names.
Reading EDF files#
Functions for reading Eyelink EDF Files.
EDF
class#
- class eyelinkio.EDF(fname)#
Represent EyeLink EDF files in Python.
This class is a subclass of
dict
, and so can be indexed like a dictionary. To see the available keys, use thekeys()
method.- Parameters:
- fname
str
The name of the EDF file.
- fname
Methods
to_mne
()Create an MNE Raw object from the EDF object.
Convert an EDF file to a pandas DataFrame.
- to_mne()#
Create an MNE Raw object from the EDF object.
- Returns:
- raw
RawEyelink
An instance of Raw.
- calibrations
list
ofCalibration
A list of Calibration objects.
- raw