├── .github └── workflows │ ├── python-publish.yml │ ├── run-tests.yml │ └── update-docs.yml ├── .gitignore ├── LICENSE ├── Makefile ├── NOTES.md ├── README.md ├── VERSION ├── data ├── example_shortblinks.pd ├── stuff │ ├── hoeks_levelt_fig.png │ ├── pics │ │ ├── eyeglm2_st.svg │ │ └── eyeglm_st.svg │ └── tabula-Hoeks-Levelt1993_Article_PupillaryDilationAsAMeasureOfA.csv ├── test.edf ├── test.edf.pd └── test.pd ├── docs-requirements.txt ├── docs ├── .nojekyll ├── algorithms │ └── foreshortening_correction_algorithm.md ├── api.rst ├── blinks.ipynb ├── conf.py ├── dev.rst ├── erpds.ipynb ├── example_datasets.ipynb ├── examples │ ├── pypillometry_conf.py │ └── share_study.rst ├── eyedata.ipynb ├── eyes_and_variables.ipynb ├── future.rst ├── importdata_asc.ipynb ├── importdata_edf.ipynb ├── index.rst ├── installation.rst ├── modeling.ipynb ├── notebooks.rst ├── pipes.ipynb ├── plotting.ipynb ├── preproc_example_pavlov.ipynb ├── pupil_correction_carole.rst ├── summary.ipynb ├── symp_talk_uit2019.ipynb └── usage.rst ├── external ├── edf2asc-linux ├── edf2asc-mac └── edf2asc-win.exe ├── logo ├── pypillometry_logo_200x200.png ├── pypillometry_logo_400x400.png └── pypillometry_logo_800x800.png ├── paper ├── paper.bib └── paper.md ├── pypillometry ├── __init__.py ├── convenience.py ├── data │ ├── 002_rlmw_events_short.asc │ ├── 002_rlmw_samples_short.asc │ ├── __init__.py │ └── test.edf ├── erpd.py ├── events.py ├── example_data.py ├── eyedata │ ├── __init__.py │ ├── experimental_setup.py │ ├── eyedata.py │ ├── eyedatadict.py │ ├── fake_eyedata.py │ ├── fakedata.py │ ├── foreshortening_calibration.py │ ├── gazedata.py │ ├── generic.py │ ├── pupildata.py │ └── spatial_calibration.py ├── intervals.py ├── io.py ├── logging.py ├── plot │ ├── __init__.py │ ├── eyeplotter.py │ ├── gazeplotter.py │ ├── genplotter.py │ └── pupilplotter.py ├── roi.py ├── signal │ ├── __init__.py │ ├── baseline.py │ ├── fake.py │ ├── preproc.py │ └── pupil.py ├── stan │ └── baseline_model_asym_laplac.stan ├── templates │ └── eyedata_repr.html ├── units.py └── viewer │ ├── __init__.py │ ├── canvas.py │ ├── navigation.py │ └── visuals.py ├── requirements.txt ├── setup.py └── tests ├── __init__.py ├── test_convenience.py ├── test_events.py ├── test_experimental_setup.py ├── test_eyedata.py ├── test_eyedatadict.py ├── test_fake_data.py ├── test_foreshortening_calibration.py ├── test_gazedata.py ├── test_intervals_class.py ├── test_io.py ├── test_plotting_edge_cases.py ├── test_plotting_overlay.py ├── test_plotting_parameters.py ├── test_plotting_pdf.py ├── test_plotting_return_values.py ├── test_plotting_smoke.py ├── test_pupil.py ├── test_pupildata.py ├── test_roi.py └── test_units.py /.github/workflows/python-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrke/pypillometry/HEAD/.github/workflows/python-publish.yml -------------------------------------------------------------------------------- /.github/workflows/run-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrke/pypillometry/HEAD/.github/workflows/run-tests.yml -------------------------------------------------------------------------------- /.github/workflows/update-docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrke/pypillometry/HEAD/.github/workflows/update-docs.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrke/pypillometry/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrke/pypillometry/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrke/pypillometry/HEAD/Makefile -------------------------------------------------------------------------------- /NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrke/pypillometry/HEAD/NOTES.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrke/pypillometry/HEAD/README.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | v2.0a2 2 | -------------------------------------------------------------------------------- /data/example_shortblinks.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrke/pypillometry/HEAD/data/example_shortblinks.pd -------------------------------------------------------------------------------- /data/stuff/hoeks_levelt_fig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrke/pypillometry/HEAD/data/stuff/hoeks_levelt_fig.png -------------------------------------------------------------------------------- /data/stuff/pics/eyeglm2_st.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrke/pypillometry/HEAD/data/stuff/pics/eyeglm2_st.svg -------------------------------------------------------------------------------- /data/stuff/pics/eyeglm_st.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrke/pypillometry/HEAD/data/stuff/pics/eyeglm_st.svg -------------------------------------------------------------------------------- /data/stuff/tabula-Hoeks-Levelt1993_Article_PupillaryDilationAsAMeasureOfA.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrke/pypillometry/HEAD/data/stuff/tabula-Hoeks-Levelt1993_Article_PupillaryDilationAsAMeasureOfA.csv -------------------------------------------------------------------------------- /data/test.edf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrke/pypillometry/HEAD/data/test.edf -------------------------------------------------------------------------------- /data/test.edf.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrke/pypillometry/HEAD/data/test.edf.pd -------------------------------------------------------------------------------- /data/test.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrke/pypillometry/HEAD/data/test.pd -------------------------------------------------------------------------------- /docs-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrke/pypillometry/HEAD/docs-requirements.txt -------------------------------------------------------------------------------- /docs/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/algorithms/foreshortening_correction_algorithm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrke/pypillometry/HEAD/docs/algorithms/foreshortening_correction_algorithm.md -------------------------------------------------------------------------------- /docs/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrke/pypillometry/HEAD/docs/api.rst -------------------------------------------------------------------------------- /docs/blinks.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrke/pypillometry/HEAD/docs/blinks.ipynb -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrke/pypillometry/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/dev.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrke/pypillometry/HEAD/docs/dev.rst -------------------------------------------------------------------------------- /docs/erpds.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrke/pypillometry/HEAD/docs/erpds.ipynb -------------------------------------------------------------------------------- /docs/example_datasets.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrke/pypillometry/HEAD/docs/example_datasets.ipynb -------------------------------------------------------------------------------- /docs/examples/pypillometry_conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrke/pypillometry/HEAD/docs/examples/pypillometry_conf.py -------------------------------------------------------------------------------- /docs/examples/share_study.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrke/pypillometry/HEAD/docs/examples/share_study.rst -------------------------------------------------------------------------------- /docs/eyedata.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrke/pypillometry/HEAD/docs/eyedata.ipynb -------------------------------------------------------------------------------- /docs/eyes_and_variables.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrke/pypillometry/HEAD/docs/eyes_and_variables.ipynb -------------------------------------------------------------------------------- /docs/future.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrke/pypillometry/HEAD/docs/future.rst -------------------------------------------------------------------------------- /docs/importdata_asc.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrke/pypillometry/HEAD/docs/importdata_asc.ipynb -------------------------------------------------------------------------------- /docs/importdata_edf.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrke/pypillometry/HEAD/docs/importdata_edf.ipynb -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrke/pypillometry/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrke/pypillometry/HEAD/docs/installation.rst -------------------------------------------------------------------------------- /docs/modeling.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrke/pypillometry/HEAD/docs/modeling.ipynb -------------------------------------------------------------------------------- /docs/notebooks.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrke/pypillometry/HEAD/docs/notebooks.rst -------------------------------------------------------------------------------- /docs/pipes.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrke/pypillometry/HEAD/docs/pipes.ipynb -------------------------------------------------------------------------------- /docs/plotting.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrke/pypillometry/HEAD/docs/plotting.ipynb -------------------------------------------------------------------------------- /docs/preproc_example_pavlov.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrke/pypillometry/HEAD/docs/preproc_example_pavlov.ipynb -------------------------------------------------------------------------------- /docs/pupil_correction_carole.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrke/pypillometry/HEAD/docs/pupil_correction_carole.rst -------------------------------------------------------------------------------- /docs/summary.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrke/pypillometry/HEAD/docs/summary.ipynb -------------------------------------------------------------------------------- /docs/symp_talk_uit2019.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrke/pypillometry/HEAD/docs/symp_talk_uit2019.ipynb -------------------------------------------------------------------------------- /docs/usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrke/pypillometry/HEAD/docs/usage.rst -------------------------------------------------------------------------------- /external/edf2asc-linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrke/pypillometry/HEAD/external/edf2asc-linux -------------------------------------------------------------------------------- /external/edf2asc-mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrke/pypillometry/HEAD/external/edf2asc-mac -------------------------------------------------------------------------------- /external/edf2asc-win.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrke/pypillometry/HEAD/external/edf2asc-win.exe -------------------------------------------------------------------------------- /logo/pypillometry_logo_200x200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrke/pypillometry/HEAD/logo/pypillometry_logo_200x200.png -------------------------------------------------------------------------------- /logo/pypillometry_logo_400x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrke/pypillometry/HEAD/logo/pypillometry_logo_400x400.png -------------------------------------------------------------------------------- /logo/pypillometry_logo_800x800.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrke/pypillometry/HEAD/logo/pypillometry_logo_800x800.png -------------------------------------------------------------------------------- /paper/paper.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrke/pypillometry/HEAD/paper/paper.bib -------------------------------------------------------------------------------- /paper/paper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrke/pypillometry/HEAD/paper/paper.md -------------------------------------------------------------------------------- /pypillometry/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrke/pypillometry/HEAD/pypillometry/__init__.py -------------------------------------------------------------------------------- /pypillometry/convenience.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrke/pypillometry/HEAD/pypillometry/convenience.py -------------------------------------------------------------------------------- /pypillometry/data/002_rlmw_events_short.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrke/pypillometry/HEAD/pypillometry/data/002_rlmw_events_short.asc -------------------------------------------------------------------------------- /pypillometry/data/002_rlmw_samples_short.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrke/pypillometry/HEAD/pypillometry/data/002_rlmw_samples_short.asc -------------------------------------------------------------------------------- /pypillometry/data/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pypillometry/data/test.edf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrke/pypillometry/HEAD/pypillometry/data/test.edf -------------------------------------------------------------------------------- /pypillometry/erpd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrke/pypillometry/HEAD/pypillometry/erpd.py -------------------------------------------------------------------------------- /pypillometry/events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrke/pypillometry/HEAD/pypillometry/events.py -------------------------------------------------------------------------------- /pypillometry/example_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrke/pypillometry/HEAD/pypillometry/example_data.py -------------------------------------------------------------------------------- /pypillometry/eyedata/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrke/pypillometry/HEAD/pypillometry/eyedata/__init__.py -------------------------------------------------------------------------------- /pypillometry/eyedata/experimental_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrke/pypillometry/HEAD/pypillometry/eyedata/experimental_setup.py -------------------------------------------------------------------------------- /pypillometry/eyedata/eyedata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrke/pypillometry/HEAD/pypillometry/eyedata/eyedata.py -------------------------------------------------------------------------------- /pypillometry/eyedata/eyedatadict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrke/pypillometry/HEAD/pypillometry/eyedata/eyedatadict.py -------------------------------------------------------------------------------- /pypillometry/eyedata/fake_eyedata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrke/pypillometry/HEAD/pypillometry/eyedata/fake_eyedata.py -------------------------------------------------------------------------------- /pypillometry/eyedata/fakedata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrke/pypillometry/HEAD/pypillometry/eyedata/fakedata.py -------------------------------------------------------------------------------- /pypillometry/eyedata/foreshortening_calibration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrke/pypillometry/HEAD/pypillometry/eyedata/foreshortening_calibration.py -------------------------------------------------------------------------------- /pypillometry/eyedata/gazedata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrke/pypillometry/HEAD/pypillometry/eyedata/gazedata.py -------------------------------------------------------------------------------- /pypillometry/eyedata/generic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrke/pypillometry/HEAD/pypillometry/eyedata/generic.py -------------------------------------------------------------------------------- /pypillometry/eyedata/pupildata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrke/pypillometry/HEAD/pypillometry/eyedata/pupildata.py -------------------------------------------------------------------------------- /pypillometry/eyedata/spatial_calibration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrke/pypillometry/HEAD/pypillometry/eyedata/spatial_calibration.py -------------------------------------------------------------------------------- /pypillometry/intervals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrke/pypillometry/HEAD/pypillometry/intervals.py -------------------------------------------------------------------------------- /pypillometry/io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrke/pypillometry/HEAD/pypillometry/io.py -------------------------------------------------------------------------------- /pypillometry/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrke/pypillometry/HEAD/pypillometry/logging.py -------------------------------------------------------------------------------- /pypillometry/plot/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrke/pypillometry/HEAD/pypillometry/plot/__init__.py -------------------------------------------------------------------------------- /pypillometry/plot/eyeplotter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrke/pypillometry/HEAD/pypillometry/plot/eyeplotter.py -------------------------------------------------------------------------------- /pypillometry/plot/gazeplotter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrke/pypillometry/HEAD/pypillometry/plot/gazeplotter.py -------------------------------------------------------------------------------- /pypillometry/plot/genplotter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrke/pypillometry/HEAD/pypillometry/plot/genplotter.py -------------------------------------------------------------------------------- /pypillometry/plot/pupilplotter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrke/pypillometry/HEAD/pypillometry/plot/pupilplotter.py -------------------------------------------------------------------------------- /pypillometry/roi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrke/pypillometry/HEAD/pypillometry/roi.py -------------------------------------------------------------------------------- /pypillometry/signal/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrke/pypillometry/HEAD/pypillometry/signal/__init__.py -------------------------------------------------------------------------------- /pypillometry/signal/baseline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrke/pypillometry/HEAD/pypillometry/signal/baseline.py -------------------------------------------------------------------------------- /pypillometry/signal/fake.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrke/pypillometry/HEAD/pypillometry/signal/fake.py -------------------------------------------------------------------------------- /pypillometry/signal/preproc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrke/pypillometry/HEAD/pypillometry/signal/preproc.py -------------------------------------------------------------------------------- /pypillometry/signal/pupil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrke/pypillometry/HEAD/pypillometry/signal/pupil.py -------------------------------------------------------------------------------- /pypillometry/stan/baseline_model_asym_laplac.stan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrke/pypillometry/HEAD/pypillometry/stan/baseline_model_asym_laplac.stan -------------------------------------------------------------------------------- /pypillometry/templates/eyedata_repr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrke/pypillometry/HEAD/pypillometry/templates/eyedata_repr.html -------------------------------------------------------------------------------- /pypillometry/units.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrke/pypillometry/HEAD/pypillometry/units.py -------------------------------------------------------------------------------- /pypillometry/viewer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrke/pypillometry/HEAD/pypillometry/viewer/__init__.py -------------------------------------------------------------------------------- /pypillometry/viewer/canvas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrke/pypillometry/HEAD/pypillometry/viewer/canvas.py -------------------------------------------------------------------------------- /pypillometry/viewer/navigation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrke/pypillometry/HEAD/pypillometry/viewer/navigation.py -------------------------------------------------------------------------------- /pypillometry/viewer/visuals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrke/pypillometry/HEAD/pypillometry/viewer/visuals.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrke/pypillometry/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrke/pypillometry/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_convenience.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrke/pypillometry/HEAD/tests/test_convenience.py -------------------------------------------------------------------------------- /tests/test_events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrke/pypillometry/HEAD/tests/test_events.py -------------------------------------------------------------------------------- /tests/test_experimental_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrke/pypillometry/HEAD/tests/test_experimental_setup.py -------------------------------------------------------------------------------- /tests/test_eyedata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrke/pypillometry/HEAD/tests/test_eyedata.py -------------------------------------------------------------------------------- /tests/test_eyedatadict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrke/pypillometry/HEAD/tests/test_eyedatadict.py -------------------------------------------------------------------------------- /tests/test_fake_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrke/pypillometry/HEAD/tests/test_fake_data.py -------------------------------------------------------------------------------- /tests/test_foreshortening_calibration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrke/pypillometry/HEAD/tests/test_foreshortening_calibration.py -------------------------------------------------------------------------------- /tests/test_gazedata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrke/pypillometry/HEAD/tests/test_gazedata.py -------------------------------------------------------------------------------- /tests/test_intervals_class.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrke/pypillometry/HEAD/tests/test_intervals_class.py -------------------------------------------------------------------------------- /tests/test_io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrke/pypillometry/HEAD/tests/test_io.py -------------------------------------------------------------------------------- /tests/test_plotting_edge_cases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrke/pypillometry/HEAD/tests/test_plotting_edge_cases.py -------------------------------------------------------------------------------- /tests/test_plotting_overlay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrke/pypillometry/HEAD/tests/test_plotting_overlay.py -------------------------------------------------------------------------------- /tests/test_plotting_parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrke/pypillometry/HEAD/tests/test_plotting_parameters.py -------------------------------------------------------------------------------- /tests/test_plotting_pdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrke/pypillometry/HEAD/tests/test_plotting_pdf.py -------------------------------------------------------------------------------- /tests/test_plotting_return_values.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrke/pypillometry/HEAD/tests/test_plotting_return_values.py -------------------------------------------------------------------------------- /tests/test_plotting_smoke.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrke/pypillometry/HEAD/tests/test_plotting_smoke.py -------------------------------------------------------------------------------- /tests/test_pupil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrke/pypillometry/HEAD/tests/test_pupil.py -------------------------------------------------------------------------------- /tests/test_pupildata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrke/pypillometry/HEAD/tests/test_pupildata.py -------------------------------------------------------------------------------- /tests/test_roi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrke/pypillometry/HEAD/tests/test_roi.py -------------------------------------------------------------------------------- /tests/test_units.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrke/pypillometry/HEAD/tests/test_units.py --------------------------------------------------------------------------------