This repository contains the analysis for the paper "The Unintended Consequence of Rebalancing".
data/: Contains the raw data used in the analysis. Source: testfol.io.src/: Contains the Python source code for the analysis.plots/: Contains the plots generated by the analysis.docs/: Contains the paper, reports, and other documentation.
This project uses Poetry for dependency management. To set up the virtual environment and install the required packages, run:
poetry installTo activate the virtual environment, run:
poetry shellTo run the main analysis and generate all plots, execute the following command from the root directory:
python src/generate_plots.pyTo compile the LaTeX report (report.tex) into a PDF, you will need a LaTeX distribution (like MiKTeX, TeX Live, or MacTeX). Run the following command from the root directory:
pdflatex -output-directory=docs docs/report.texYou may need to run the command twice to ensure all cross-references are correctly updated. This will place the generated report.pdf and all auxiliary files inside the docs/ directory.