├── .editorconfig ├── .github └── ISSUE_TEMPLATE.md ├── .gitignore ├── .travis.yml ├── AUTHORS.rst ├── CONTRIBUTING.rst ├── HISTORY.rst ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.rst ├── data └── .gitkeep ├── docs ├── Makefile ├── _static │ ├── ecb_screenshot.png │ └── yield_curve_dynamics_qr.png ├── authors.rst ├── conf.py ├── contributing.rst ├── history.rst ├── index.rst ├── installation.rst ├── make.bat ├── modules.rst ├── readme.rst ├── usage.rst └── yield_curve_dynamics.rst ├── lightning_talk_2019-04-04 ├── Yield Curve Dynamics.slides.html └── euryieldcurve.mp4 ├── notebooks ├── Yield Curve Dynamics old.ipynb └── Yield Curve Dynamics.ipynb ├── output └── .gitkeep ├── requirements_dev.txt ├── setup.cfg ├── setup.py ├── tests ├── __init__.py └── test_yield_curve_dynamics.py ├── tox.ini └── yield_curve_dynamics ├── __init__.py ├── animate.py ├── cli.py ├── data.py ├── download.py ├── keyrates.py ├── pca.py ├── video.py └── yield_curve_dynamics.py /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luphord/yield_curve_dynamics/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luphord/yield_curve_dynamics/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luphord/yield_curve_dynamics/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luphord/yield_curve_dynamics/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luphord/yield_curve_dynamics/HEAD/AUTHORS.rst -------------------------------------------------------------------------------- /CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luphord/yield_curve_dynamics/HEAD/CONTRIBUTING.rst -------------------------------------------------------------------------------- /HISTORY.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luphord/yield_curve_dynamics/HEAD/HISTORY.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luphord/yield_curve_dynamics/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luphord/yield_curve_dynamics/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luphord/yield_curve_dynamics/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luphord/yield_curve_dynamics/HEAD/README.rst -------------------------------------------------------------------------------- /data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luphord/yield_curve_dynamics/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_static/ecb_screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luphord/yield_curve_dynamics/HEAD/docs/_static/ecb_screenshot.png -------------------------------------------------------------------------------- /docs/_static/yield_curve_dynamics_qr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luphord/yield_curve_dynamics/HEAD/docs/_static/yield_curve_dynamics_qr.png -------------------------------------------------------------------------------- /docs/authors.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../AUTHORS.rst 2 | -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luphord/yield_curve_dynamics/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/contributing.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../CONTRIBUTING.rst 2 | -------------------------------------------------------------------------------- /docs/history.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../HISTORY.rst 2 | -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luphord/yield_curve_dynamics/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luphord/yield_curve_dynamics/HEAD/docs/installation.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luphord/yield_curve_dynamics/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/modules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luphord/yield_curve_dynamics/HEAD/docs/modules.rst -------------------------------------------------------------------------------- /docs/readme.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../README.rst 2 | -------------------------------------------------------------------------------- /docs/usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luphord/yield_curve_dynamics/HEAD/docs/usage.rst -------------------------------------------------------------------------------- /docs/yield_curve_dynamics.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luphord/yield_curve_dynamics/HEAD/docs/yield_curve_dynamics.rst -------------------------------------------------------------------------------- /lightning_talk_2019-04-04/Yield Curve Dynamics.slides.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luphord/yield_curve_dynamics/HEAD/lightning_talk_2019-04-04/Yield Curve Dynamics.slides.html -------------------------------------------------------------------------------- /lightning_talk_2019-04-04/euryieldcurve.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luphord/yield_curve_dynamics/HEAD/lightning_talk_2019-04-04/euryieldcurve.mp4 -------------------------------------------------------------------------------- /notebooks/Yield Curve Dynamics old.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luphord/yield_curve_dynamics/HEAD/notebooks/Yield Curve Dynamics old.ipynb -------------------------------------------------------------------------------- /notebooks/Yield Curve Dynamics.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luphord/yield_curve_dynamics/HEAD/notebooks/Yield Curve Dynamics.ipynb -------------------------------------------------------------------------------- /output/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /requirements_dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luphord/yield_curve_dynamics/HEAD/requirements_dev.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luphord/yield_curve_dynamics/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luphord/yield_curve_dynamics/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luphord/yield_curve_dynamics/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/test_yield_curve_dynamics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luphord/yield_curve_dynamics/HEAD/tests/test_yield_curve_dynamics.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luphord/yield_curve_dynamics/HEAD/tox.ini -------------------------------------------------------------------------------- /yield_curve_dynamics/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luphord/yield_curve_dynamics/HEAD/yield_curve_dynamics/__init__.py -------------------------------------------------------------------------------- /yield_curve_dynamics/animate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luphord/yield_curve_dynamics/HEAD/yield_curve_dynamics/animate.py -------------------------------------------------------------------------------- /yield_curve_dynamics/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luphord/yield_curve_dynamics/HEAD/yield_curve_dynamics/cli.py -------------------------------------------------------------------------------- /yield_curve_dynamics/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luphord/yield_curve_dynamics/HEAD/yield_curve_dynamics/data.py -------------------------------------------------------------------------------- /yield_curve_dynamics/download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luphord/yield_curve_dynamics/HEAD/yield_curve_dynamics/download.py -------------------------------------------------------------------------------- /yield_curve_dynamics/keyrates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luphord/yield_curve_dynamics/HEAD/yield_curve_dynamics/keyrates.py -------------------------------------------------------------------------------- /yield_curve_dynamics/pca.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luphord/yield_curve_dynamics/HEAD/yield_curve_dynamics/pca.py -------------------------------------------------------------------------------- /yield_curve_dynamics/video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luphord/yield_curve_dynamics/HEAD/yield_curve_dynamics/video.py -------------------------------------------------------------------------------- /yield_curve_dynamics/yield_curve_dynamics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luphord/yield_curve_dynamics/HEAD/yield_curve_dynamics/yield_curve_dynamics.py --------------------------------------------------------------------------------