.. DO NOT EDIT. .. THIS FILE WAS AUTOMATICALLY GENERATED BY SPHINX-GALLERY. .. TO MAKE CHANGES, EDIT THE SOURCE PYTHON FILE: .. "examples/mouse_eye_movements.py" .. LINE NUMBERS ARE GIVEN BELOW. .. only:: html .. note:: :class: sphx-glr-download-link-note :ref:`Go to the end ` to download the full example code. or to run this example in your browser via Binder .. rst-class:: sphx-glr-example-title .. _sphx_glr_examples_mouse_eye_movements.py: Pupil tracking ================= Look at eye movements and pupil diameter. .. GENERATED FROM PYTHON SOURCE LINES 8-10 Imports ------- .. GENERATED FROM PYTHON SOURCE LINES 10-19 .. code-block:: Python import sleap_io as sio import xarray as xr from matplotlib import pyplot as plt import movement.kinematics as kin from movement import sample_data from movement.filtering import rolling_filter from movement.plots import plot_centroid_trajectory .. GENERATED FROM PYTHON SOURCE LINES 20-29 Load the data ------------- We will use two datasets from the sample data module. These datasets involve recordings of the eyes of mice placed on a rotating platform with different visual stimuli. The ``uniform`` condition features a uniformly lit surround stimulus, whereas the ``black`` condition was acquired in the dark. These datasets were tracked using DeepLabCut (DLC) and include four keypoints: two on either side of the pupil (``pupil-L`` and ``pupil-R``) and two on either side of the eye (``eye-L`` and ``eye-R``). .. GENERATED FROM PYTHON SOURCE LINES 29-41 .. code-block:: Python ds_black = sample_data.fetch_dataset( "DLC_rotating-mouse_eye-tracking_stim-black.predictions.h5", with_video=True, ) ds_uniform = sample_data.fetch_dataset( "DLC_rotating-mouse_eye-tracking_stim-uniform.predictions.h5", with_video=True, ) # Save data in a dictionary. ds_dict = {"black": ds_black, "uniform": ds_uniform} .. GENERATED FROM PYTHON SOURCE LINES 42-43 Print the content of one of the datasets. .. GENERATED FROM PYTHON SOURCE LINES 43-44 .. code-block:: Python print(ds_dict["black"]) .. rst-class:: sphx-glr-script-out .. code-block:: none Size: 728kB Dimensions: (time: 7000, space: 2, keypoints: 4, individuals: 1) Coordinates: * time (time) float64 56kB 0.0 0.025 0.05 0.075 ... 174.9 174.9 175.0 * space (space) ` .. container:: sphx-glr-download sphx-glr-download-python :download:`Download Python source code: mouse_eye_movements.py ` .. container:: sphx-glr-download sphx-glr-download-zip :download:`Download zipped: mouse_eye_movements.zip ` .. only:: html .. rst-class:: sphx-glr-signature `Gallery generated by Sphinx-Gallery `_