Skip to content

Quickstart Guide

You will need:

Most synthetic experiment runners are part of autora-core:

pip install -U "autora"

Success

It is recommended to use a python environment manager like virtualenv.

Print a description of the prospect theory model by Kahneman and Tversky by running:

python -c "
from autora.experiment_runner.synthetic.economics.prospect_theory import prospect_theory
study = prospect_theory()
print(study.description)
"