├── .DS_Store ├── .pypirc ├── LICENSE ├── LassoLogitCV_documentation.md ├── LassoLogitMinimize.png ├── Logit_Generating.png ├── Logit_LL_Deriv.png ├── ML2.py ├── ML2Estimator_documentation.md ├── README.md ├── RidgeLogitCV_documentation.md ├── RidgeLogitMinimize.png ├── __init__.py ├── __pycache__ └── ML2.cpython-35.pyc ├── example.py ├── setup.cfg ├── setup.py └── sipp1991.dta /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kquist/DoubleML-Python/HEAD/.DS_Store -------------------------------------------------------------------------------- /.pypirc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kquist/DoubleML-Python/HEAD/.pypirc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kquist/DoubleML-Python/HEAD/LICENSE -------------------------------------------------------------------------------- /LassoLogitCV_documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kquist/DoubleML-Python/HEAD/LassoLogitCV_documentation.md -------------------------------------------------------------------------------- /LassoLogitMinimize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kquist/DoubleML-Python/HEAD/LassoLogitMinimize.png -------------------------------------------------------------------------------- /Logit_Generating.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kquist/DoubleML-Python/HEAD/Logit_Generating.png -------------------------------------------------------------------------------- /Logit_LL_Deriv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kquist/DoubleML-Python/HEAD/Logit_LL_Deriv.png -------------------------------------------------------------------------------- /ML2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kquist/DoubleML-Python/HEAD/ML2.py -------------------------------------------------------------------------------- /ML2Estimator_documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kquist/DoubleML-Python/HEAD/ML2Estimator_documentation.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kquist/DoubleML-Python/HEAD/README.md -------------------------------------------------------------------------------- /RidgeLogitCV_documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kquist/DoubleML-Python/HEAD/RidgeLogitCV_documentation.md -------------------------------------------------------------------------------- /RidgeLogitMinimize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kquist/DoubleML-Python/HEAD/RidgeLogitMinimize.png -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | from ML2 import * -------------------------------------------------------------------------------- /__pycache__/ML2.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kquist/DoubleML-Python/HEAD/__pycache__/ML2.cpython-35.pyc -------------------------------------------------------------------------------- /example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kquist/DoubleML-Python/HEAD/example.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [metadata] 2 | description-file = README.md -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kquist/DoubleML-Python/HEAD/setup.py -------------------------------------------------------------------------------- /sipp1991.dta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kquist/DoubleML-Python/HEAD/sipp1991.dta --------------------------------------------------------------------------------