Skip to content

Latest commit

 

History

History
19 lines (13 loc) · 580 Bytes

README.md

File metadata and controls

19 lines (13 loc) · 580 Bytes

What is this codebase about?

See the returns.ipynb notebook in this folder.

How to run

I use miniconda through Homebrew on my Mac to setup the required environment:

conda create -n returns -c conda-forge matplotlib==3.8.3 notebook==7.1.0 pyarrow==15.0.0 statsmodels==0.14.1 python=3.10.13
conda activate returns
jupyter notebook returns.ipynb

Finally the created environment above can be removed through:

conda deactivate && conda remove --name returns --all