Skip to content

Commit f3571b7

Browse files
committed
allow direct execution, be more precise in readme
1 parent 922064c commit f3571b7

File tree

4 files changed

+23
-3
lines changed

4 files changed

+23
-3
lines changed

Readme.md

Lines changed: 21 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,21 +27,39 @@ In `/analysis`, we share our analysis scripts that process the input data, compu
2727
To run the script yourself, you will need:
2828

2929
- Python 3.x
30+
- matplotlib
3031
- numpy
3132
- pandas
33+
- pytest
3234
- scipy
3335
- seaborn
3436
- statsmodels
3537

36-
Once your system is ready, start the `/analysis/main.py`.
38+
You can install all dependencies via:
39+
40+
```bash
41+
pip install -r requirements.txt
42+
```
43+
44+
Once your system is ready, start the pipeline:
45+
46+
```bash
47+
python main.py
48+
49+
## or
50+
51+
pytest
52+
```
53+
54+
The analysis output is located in `/analysis/output`.
3755

3856
# Results
3957

40-
For convenience, we provide all output that the analysis script yields for our data in `/output`.
58+
For convenience, we provide all output that the analysis script yields for our data in `/analysis/output`.
4159

4260
## Experiment Data: fMRI Correlations
4361

44-
In addition to the selected plots presented in the paper, we added all correlation plots in `/output/plots`.
62+
In addition to the selected plots presented in the paper, we added all correlation plots in `/analysis/output`.
4563

4664
## Experiment Data: Additional Metrics
4765

__init__.py

Whitespace-only changes.
File renamed without changes.

requirements.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
1+
matplotlib
12
numpy
23
pandas
4+
pytest
35
scipy
46
seaborn
57
statsmodels

0 commit comments

Comments
 (0)