Exporting to other ecosystems¶
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()
# prepare_gazepoint_eyetrackingr_data is available as gp3.prepare_gazepoint_eyetrackingr_data(...)
# prepare_gazepoint_pupillometryr_data is available as gp3.prepare_gazepoint_pupillometryr_data(...)
# prepare_gazepoint_hddm_export is available as gp3.prepare_gazepoint_hddm_export(...)
# export_gazepoint_to_bids is available as gp3.export_gazepoint_to_bids(...)
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.