pymovements in 10 minutes#

What you will learn in this tutorial:#

  • how to download one of the publicly available datasets

  • how to load a subset of the data into your memory

  • how to transform pixel coordinates into degrees of visual angle

  • how to transform positional data into velocity data

  • how to detect fixations by using the I-VT algorithm

  • how to detect saccades by using the microsaccades algorithm

  • how to compute additional event properties for your analysis

  • how to save your preprocessed data

  • how to plot the main saccadic sequence from your data

Downloading one of the public datasets#

We import pymovements as the alias pm for convenience.

[1]:
import polars as pl

import pymovements as pm
/home/docs/checkouts/readthedocs.org/user_builds/pymovements/envs/v0.14.0/lib/python3.9/site-packages/tqdm/auto.py:21: TqdmWarning: IProgress not found. Please update jupyter and ipywidgets. See https://ipywidgets.readthedocs.io/en/stable/user_install.html
  from .autonotebook import tqdm as notebook_tqdm

pymovements provides a library of publicly available datasets.

You can browse through the available dataset definitions here: Datasets

For this tutorial we will limit ourselves to the ToyDataset due to its minimal space requirements.

Other datasets can be downloaded by simply replacing ToyDataset with one of the other available datasets.

We can initialize and download by passing the desired dataset name as a string argument.

Additionally we need the root directory path of your data.

[2]:
dataset = pm.Dataset('ToyDataset', path='data/ToyDataset')
dataset.download()
Downloading http://github.com/aeye-lab/pymovements-toy-dataset/zipball/6cb5d663317bf418cec0c9abe1dde5085a8a8ebd/ to data/ToyDataset/downloads/pymovements-toy-dataset.zip
pymovements-toy-dataset.zip: 100%|██████████| 3.06M/3.06M [00:00<00:00, 25.3MB/s]
Checking integrity of pymovements-toy-dataset.zip
Extracting pymovements-toy-dataset.zip to data/ToyDataset/raw
[2]:
<pymovements.dataset.dataset.Dataset at 0x7fd18f6877f0>

Our downloaded dataset will be placed in new a directory with the name of the dataset:

[3]:
dataset.path
[3]:
PosixPath('data/ToyDataset')

Archive files are automatically extracted into the path specified by Dataset.paths.raw:

[4]:
dataset.paths.raw
[4]:
PosixPath('data/ToyDataset/raw')

Loading in your data into memory#

Next we load our dataset into memory to be able to work with it:

[5]:
dataset.load()
100%|██████████| 20/20 [00:00<00:00, 195.27it/s]
[5]:
<pymovements.dataset.dataset.Dataset at 0x7fd18f6877f0>

This way we fill two attributes with data. First we have the fileinfo attribute which holds all the basic information for files:

[6]:
dataset.fileinfo.head()
[6]:
shape: (5, 3)
text_idpage_idfilepath
i64i64str
01"aeye-lab-pymov…
02"aeye-lab-pymov…
03"aeye-lab-pymov…
04"aeye-lab-pymov…
05"aeye-lab-pymov…

We notice that for each filepath a text_id and page_id is specified.

We have also loaded our gaze data into the dataframes in the gaze attribute:

[7]:
dataset.gaze[0].frame.head()
[7]:
shape: (5, 5)
text_idpage_idtimex_right_pixy_right_pix
i64i64f64f64f64
011.988145e6206.8152.4
011.988146e6206.9152.1
011.988147e6207.0151.8
011.988148e6207.1151.7
011.988149e6207.0151.5

Apart from the familiar columns from the fileinfo dataframe we see the columns time, x_right_pix and y_right_pix.

The last two columns refer to the pixel coordinates at the timestep specified by time.

We are also able to just take a subset of the data by specifying values of the fileinfo columns. The key refers to the column in the fileinfo dataframe. The values in the dictionary can be of type bool, int, float or str, but also lists and ranges

[8]:
subset = {
    'text_id': 0,
    'page_id': range(3),
}
dataset.load(subset=subset)

dataset.fileinfo
100%|██████████| 2/2 [00:00<00:00, 207.13it/s]
[8]:
shape: (2, 3)
text_idpage_idfilepath
i64i64str
01"aeye-lab-pymov…
02"aeye-lab-pymov…

Now we selected only a small subset of our data.

Preprocessing raw gaze data#

We now want to preprocess our gaze data by transforming pixel coordinates into degrees of visual angle and then computing velocity data from our positional data.

[9]:
dataset.pix2deg()

dataset.gaze[0].frame.head()
100%|██████████| 2/2 [00:00<00:00, 549.93it/s]
[9]:
shape: (5, 7)
text_idpage_idtimex_right_pixy_right_pixy_right_posx_right_pos
i64i64f64f64f64f64f64
011.988145e6206.8152.4-12.005591-7.528075
011.988146e6206.9152.1-12.01277-7.525633
011.988147e6207.0151.8-12.019949-7.52319
011.988148e6207.1151.7-12.022342-7.520748
011.988149e6207.0151.5-12.027128-7.52319

We notice that two new columns have appeared: x_right_pos and y_right_pos. These are the positional columns specified in degrees of visual angle (dva).

For transforming our positional data into velocity data we will use the Savitzky-Golay differentiation filter.

We can also specify some additional parameters for this method:

[10]:
dataset.pos2vel(method='savitzky_golay', window_length=7, polyorder=2)

dataset.gaze[0].frame.head()
100%|██████████| 2/2 [00:00<00:00, 368.15it/s]
[10]:
shape: (5, 9)
text_idpage_idtimex_right_pixy_right_pixy_right_posx_right_posx_right_vely_right_vel
i64i64f64f64f64f64f64f64f64
011.988145e6206.8152.4-12.005591-7.5280751.918969-8.119266
011.988146e6206.9152.1-12.01277-7.5256331.686374-6.80873
011.988147e6207.0151.8-12.019949-7.523191.453779-5.498195
011.988148e6207.1151.7-12.022342-7.5207481.221184-4.187659
011.988149e6207.0151.5-12.027128-7.523191.570121-2.307447

Detecting events#

Now let’s detect some events.

First we will detect fixations using the I-VT algorithm using its default parameters:

[11]:
dataset.detect_events('ivt')

dataset.events[0].frame.head()
2it [00:00, 298.54it/s]
[11]:
shape: (5, 6)
nameonsetoffsetdurationtext_idpage_id
stri64i64i64i64i64
"fixation"1988145198832217701
"fixation"1988351198854619501
"fixation"1988592198873614401
"fixation"1988788198901222401
"fixation"1989044198917012601

Next we detect some saccades. This time we don’t use the default parameters but specify our own:

[12]:
dataset.detect_events('microsaccades', minimum_duration=8)

dataset.events[0].frame.filter(pl.col('name') == 'saccade').head()
2it [00:00, 91.65it/s]
[12]:
shape: (5, 6)
nameonsetoffsetdurationtext_idpage_id
stri64i64i64i64i64
"saccade"198832219883371501
"saccade"198834119883511001
"saccade"198854619885672101
"saccade"198857019885831301
"saccade"198873619887602401

Computing event properties#

The event dataframe currently only holds the name, onset, offset and duration of an event (additionally we have some more identifier columns at the beginning).

We now want to compute some additional properties for each event. Event properties are things like peak velocity, amplitude and dispersion during an event.

We start out with computing the dispersion:

[13]:
dataset.compute_event_properties("dispersion")

dataset.events[0].frame.head()
2it [00:02,  1.19s/it]
[13]:
shape: (5, 7)
nameonsetoffsetdurationtext_idpage_iddispersion
stri64i64i64i64i64f64
"fixation"19881451988322177010.154585
"fixation"19883511988546195010.291794
"fixation"19885921988736144010.295701
"fixation"19887881989012224010.27063
"fixation"19890441989170126010.348295

We notice that a new column with the name dispersion has appeared in the event dataframe.

We can also pass a list of properties. Let’s add the amplitude and peak velocity:

[14]:
dataset.compute_event_properties(["amplitude", "peak_velocity"])

dataset.events[0].frame.head()
2it [00:02,  1.21s/it]
[14]:
shape: (5, 9)
nameonsetoffsetdurationtext_idpage_iddispersionamplitudepeak_velocity
stri64i64i64i64i64f64f64f64
"fixation"19881451988322177010.1545850.10968916.423157
"fixation"19883511988546195010.2917940.20644319.12955
"fixation"19885921988736144010.2957010.20917917.794216
"fixation"19887881989012224010.270630.19197119.194043
"fixation"19890441989170126010.3482950.30420918.583422

This way we can compute all of our desired properties in a single run.

Plotting our data#

pymovements provides a range of plotting functions.

You can browse through the available plotting functions here: Plotting

In this this tutorial we will plot the saccadic main sequence of our data.

[15]:
pm.plotting.main_sequence_plot(dataset.events[0])
../_images/tutorials_pymovements-in-10-minutes_40_0.png

Saving and loading your dataframes#

If we want to save interim results we can simply use the save() method like this:

[16]:
dataset.save()
100%|██████████| 2/2 [00:00<00:00, 1437.88it/s]
100%|██████████| 2/2 [00:00<00:00, 410.10it/s]
[16]:
<pymovements.dataset.dataset.Dataset at 0x7fd18f6877f0>

Let’s test this out by initializing a new PublicDataset object in the same directory and loading in the preprocessed gaze and event data.

This time we don’t need to download anything.

[17]:
preprocessed_dataset = pm.Dataset('ToyDataset', path='data/ToyDataset')

dataset.load(events=True, preprocessed=True, subset=subset)

display(dataset.gaze[0])
display(dataset.events[0])
100%|██████████| 2/2 [00:00<00:00, 1150.07it/s]
100%|██████████| 2/2 [00:00<00:00, 774.93it/s]
<pymovements.gaze.gaze_dataframe.GazeDataFrame at 0x7fd18c0c3520>
<pymovements.events.events.EventDataFrame at 0x7fd18f5df4f0>