-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into 19-feat-add-linear-mixed-model-to-abstract
- Loading branch information
Showing
4 changed files
with
38 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# Quickstart Guide | ||
|
||
You will need: | ||
|
||
- `python` 3.8 or greater: [https://www.python.org/downloads/](https://www.python.org/downloads/) | ||
|
||
Most synthetic experiment runners are part of autora-core: | ||
|
||
```shell | ||
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: | ||
```shell | ||
python -c " | ||
from autora.experiment_runner.synthetic.economics.prospect_theory import prospect_theory | ||
study = prospect_theory() | ||
print(study.description) | ||
" | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters