├── .gitignore ├── LICENSE ├── Quantile Local Projections.ipynb ├── README.md ├── __init__.py ├── cqsampling.py ├── quantileproj.py └── sandbox.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainlafarguette/quantileproj/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainlafarguette/quantileproj/HEAD/LICENSE -------------------------------------------------------------------------------- /Quantile Local Projections.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainlafarguette/quantileproj/HEAD/Quantile Local Projections.ipynb -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainlafarguette/quantileproj/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainlafarguette/quantileproj/HEAD/__init__.py -------------------------------------------------------------------------------- /cqsampling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainlafarguette/quantileproj/HEAD/cqsampling.py -------------------------------------------------------------------------------- /quantileproj.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainlafarguette/quantileproj/HEAD/quantileproj.py -------------------------------------------------------------------------------- /sandbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainlafarguette/quantileproj/HEAD/sandbox.py --------------------------------------------------------------------------------