AOI sequence and reliability diagnostics¶
This article is the Python counterpart of the corresponding gp3tools workflow. It uses bundled synthetic data so it can be run without private participant exports.
import gp3tools as gp3
data = gp3.load_example_master()
# add_gazepoint_aoi is available as gp3.add_gazepoint_aoi(...)
# summarise_gazepoint_aoi_windows is available as gp3.summarise_gazepoint_aoi_windows(...)
# compute_gazepoint_aoi_transition_matrix is available as gp3.compute_gazepoint_aoi_transition_matrix(...)
# compute_gazepoint_aoi_entropy is available as gp3.compute_gazepoint_aoi_entropy(...)
Recommended workflow¶
- Inspect column availability and create/validate a master table.
- Run the relevant quality gates before transformation or modelling.
- Keep preprocessing and exclusion decisions explicit.
- Save derived tables/plots with package/version metadata.
- For backend-adapted statistical functions, report the Python backend and validate the inferential target against the R reference when confirmatory equivalence matters.