├── .gitignore ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── Xverse.ipynb ├── data ├── Readme.md └── bank.csv ├── install_help ├── After_installation.png ├── how to install.png └── readme.md ├── requirements.txt ├── setup.py └── xverse ├── __init__.py ├── ensemble ├── __init__.py └── _voting.py ├── feature_subset.py ├── graph ├── __init__.py └── _bivariate_charts.py ├── readme.md └── transformer ├── __init__.py ├── _binning.py └── _woe.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sundar0989/XuniVerse/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sundar0989/XuniVerse/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sundar0989/XuniVerse/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sundar0989/XuniVerse/HEAD/README.md -------------------------------------------------------------------------------- /Xverse.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sundar0989/XuniVerse/HEAD/Xverse.ipynb -------------------------------------------------------------------------------- /data/Readme.md: -------------------------------------------------------------------------------- 1 | Dataset used in this package exercise 2 | -------------------------------------------------------------------------------- /data/bank.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sundar0989/XuniVerse/HEAD/data/bank.csv -------------------------------------------------------------------------------- /install_help/After_installation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sundar0989/XuniVerse/HEAD/install_help/After_installation.png -------------------------------------------------------------------------------- /install_help/how to install.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sundar0989/XuniVerse/HEAD/install_help/how to install.png -------------------------------------------------------------------------------- /install_help/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sundar0989/XuniVerse/HEAD/install_help/readme.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sundar0989/XuniVerse/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sundar0989/XuniVerse/HEAD/setup.py -------------------------------------------------------------------------------- /xverse/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sundar0989/XuniVerse/HEAD/xverse/__init__.py -------------------------------------------------------------------------------- /xverse/ensemble/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sundar0989/XuniVerse/HEAD/xverse/ensemble/__init__.py -------------------------------------------------------------------------------- /xverse/ensemble/_voting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sundar0989/XuniVerse/HEAD/xverse/ensemble/_voting.py -------------------------------------------------------------------------------- /xverse/feature_subset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sundar0989/XuniVerse/HEAD/xverse/feature_subset.py -------------------------------------------------------------------------------- /xverse/graph/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sundar0989/XuniVerse/HEAD/xverse/graph/__init__.py -------------------------------------------------------------------------------- /xverse/graph/_bivariate_charts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sundar0989/XuniVerse/HEAD/xverse/graph/_bivariate_charts.py -------------------------------------------------------------------------------- /xverse/readme.md: -------------------------------------------------------------------------------- 1 | Code repository 2 | -------------------------------------------------------------------------------- /xverse/transformer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sundar0989/XuniVerse/HEAD/xverse/transformer/__init__.py -------------------------------------------------------------------------------- /xverse/transformer/_binning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sundar0989/XuniVerse/HEAD/xverse/transformer/_binning.py -------------------------------------------------------------------------------- /xverse/transformer/_woe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sundar0989/XuniVerse/HEAD/xverse/transformer/_woe.py --------------------------------------------------------------------------------