diff options
author | Théo de la Hogue | 2023-06-07 20:38:04 +0200 |
---|---|---|
committer | Théo de la Hogue | 2023-06-07 20:38:04 +0200 |
commit | 79e8940deb433793846c71ed8ffd2d670fdc904a (patch) | |
tree | 67a1802a37d1e916d651c47c78d5d5de721f7fb4 /docs/user_guide/gaze_analysis/scan_path.md | |
parent | 82da31d1989c20ea2e1748f6e33b7cd36aa34252 (diff) | |
download | argaze-79e8940deb433793846c71ed8ffd2d670fdc904a.zip argaze-79e8940deb433793846c71ed8ffd2d670fdc904a.tar.gz argaze-79e8940deb433793846c71ed8ffd2d670fdc904a.tar.bz2 argaze-79e8940deb433793846c71ed8ffd2d670fdc904a.tar.xz |
Improving cross reference in gaze analysis and timestamped data sections.
Diffstat (limited to 'docs/user_guide/gaze_analysis/scan_path.md')
-rw-r--r-- | docs/user_guide/gaze_analysis/scan_path.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/user_guide/gaze_analysis/scan_path.md b/docs/user_guide/gaze_analysis/scan_path.md index e00682f..67600ac 100644 --- a/docs/user_guide/gaze_analysis/scan_path.md +++ b/docs/user_guide/gaze_analysis/scan_path.md @@ -11,7 +11,7 @@ The [ScanPath](/argaze/#argaze.GazeFeatures.ScanPath) class is defined as a list ![Fixation based scan path](../../img/scan_path.png) -As fixations and saccades are identified, the scan path is built by calling respectively **append_fixation** and **append_saccade** methods. +As fixations and saccades are identified, the scan path is built by calling respectively [append_fixation](/argaze/#argaze.GazeFeatures.ScanPath.append_fixation) and [append_saccade](/argaze/#argaze.GazeFeatures.ScanPath.append_saccade) methods. ### Analysis @@ -68,7 +68,7 @@ The [AOIScanPath](/argaze/#argaze.GazeFeatures.AOIScanPath) class is defined as ![AOI based scan path](../../img/aoi_scan_path.png) -As fixations and saccades are identified, the scan path is built by calling respectively **append_fixation** and **append_saccade** methods. +As fixations and saccades are identified, the scan path is built by calling respectively [append_fixation](/argaze/#argaze.GazeFeatures.AOIScanPath.append_fixation) and [append_saccade](/argaze/#argaze.GazeFeatures.AOIScanPath.append_saccade) methods. ### Analysis @@ -152,7 +152,7 @@ print(aoi_scan_path.get_letter_aoi('B')) #### Transition matrix When a new [AOIScanStep](/argaze/#argaze.GazeFeatures.AOIScanStep) is created, the [AOIScanPath](/argaze/#argaze.GazeFeatures.AOIScanPath) internally counts the number of transitions from an AOI to another AOI to ease Markov chain analysis. -Then, the [AOIScanPath transition_matrix](/argaze/#argaze.GazeFeatures.AOIScanPath.transition_matrix) property returns a *Pandas DataFrame* where indexes are transition departures and columns are transition destinations. +Then, the [AOIScanPath transition_matrix](/argaze/#argaze.GazeFeatures.AOIScanPath.transition_matrix) property returns a [Pandas DataFrame](https://pandas.pydata.org/docs/reference/api/pandas.DataFrame.html) where indexes are transition departures and columns are transition destinations. Here is an exemple of transition matrix for the following [AOIScanPath](/argaze/#argaze.GazeFeatures.AOIScanPath): Foo > Bar > Shu > Foo > Bar |