QC reporting bundle¶
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()
# check_sampling_rate is available as gp3.check_sampling_rate(...)
# summarise_tracking_quality is available as gp3.summarise_tracking_quality(...)
# summarize_gazepoint_missingness is available as gp3.summarize_gazepoint_missingness(...)
# check_gazepoint_real_data_readiness is available as gp3.check_gazepoint_real_data_readiness(...)
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.