├── .gitignore ├── README.MD ├── images ├── fork-2115485_960_720.jpg ├── s-t-learner.svg └── space-shuttle-774_1280.jpg └── uplift-modeling.ipynb /.gitignore: -------------------------------------------------------------------------------- 1 | ignore/* 2 | .ipynb_checkpoints 3 | __pycache__ 4 | .DS_Store 5 | Notes/* 6 | data/* 7 | Old/* 8 | -------------------------------------------------------------------------------- /README.MD: -------------------------------------------------------------------------------- 1 | ## Uplift modeling 2 | An introduction to the concept of uplift modeling, including a simple model building and evaluation exercise. 3 | 4 | ## Installations 5 | Numpy, Pandas, Scikit-Learn, XGBoost, Statsmodels, Matplotlib 6 | -------------------------------------------------------------------------------- /images/fork-2115485_960_720.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klostest/uplift_modeling/48066368b878883d6a0c07e69d5b05774b5eb654/images/fork-2115485_960_720.jpg -------------------------------------------------------------------------------- /images/space-shuttle-774_1280.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klostest/uplift_modeling/48066368b878883d6a0c07e69d5b05774b5eb654/images/space-shuttle-774_1280.jpg --------------------------------------------------------------------------------