๐ ฟ๏ธ lot Saccades#
Saccades are essential for vision. They are rapid, ballistic eye movements that redirect the fovea to a new target. Saccades are typically classified into two types: voluntary and reflexive. Voluntary saccades are under conscious control and are used to explore the visual world. Reflexive saccades are automatic responses to sudden changes in the visual field.
to plot saccades using etformat
you need to use the plot_saccades
function. This function will plot the saccades on top of the gaze data. The saccades are plotted as lines with an arrow indicating the direction of the saccade.
import etformat as et
import pandas as pd
events = pd.read_csv(r"D:\Github_web_page_website\test_events.csv")
et.plot_saccades(events, trial_number=15)
๐ etformat 1.1.1 - For Documentation, visit: https://ahsankhodami.github.io/etformat/intro.html
โ ๏ธ Default screen size is 2560x1440. If incorrect, specify `screen_width` and `screen_height` in the function call.
Trial 15 has 9 gaze movements.
