/toad

ESC Team's scorecard tools

Primary LanguagePythonMIT LicenseMIT

TOAD

PyPi version Python version Build Status

Toad is developed to facilitate the model development work - especially credit risk scorecard. It provides intuitive tools for (1) data handling, (2) feature selection and WOE binning, (3) model selection (4) results evaluation and model validation, and (5) scorecard transformation.

A basic tutorial is provided on readthedocs.

By the ESC Team

Install

via pip

pip install toad

via source code

python setup.py install

Usage

import toad


data = pd.read_csv('test.csv')

toad.detect(data)

toad.quality(data, target = 'TARGET', iv_only = True)

toad.IV(feature, target, method = 'dt', min_samples = 0.1)

Documents

A simple API docs