Skip to main content

woebin

A python library powered by Rust to perform binning procedure based on WOE.

Installation

pip install woebin-python

NOTE: It works for Windows 11 only. If you want to use it for another platform, please, see below how to build it from source.

Simple example

from woebin import WoeBinningProc

wbp = WoeBinningProc()

# Process categorial binning
wbp.process(df['series'], df['target'], bins=5, is_numeric=False, smooth=1.0)  # series as integers, target as 0-1 or boolean

# Process numeric binning (values in series are considered as numeric)
wbp.process(df['series'], df['target'], bins=5, is_numeric=True, smooth=1.0)

# Final IV
print(wbp.get_iv_total())

# Information about found bins
bins_info = wbp.get_bins_info()
print(bins_info)

# Mapping value->WOE
woe_map = wbp.get_woe_map()
print(woe_map)

Build and install from source

  1. Make sure Rust nightly is installed (Installation: https://www.rust-lang.org/tools/install, turn on nightly mode: rustup default nightly).
  2. Clone the repository: git clone --depth=1 https://github.com/fomalhaut88/woebin.git
  3. Go to woebin directory: cd woebin
  4. Build the project: python setup.py sdist

After that the package can be installed with the command:

pip install path/to/woebin-python-<VERSION>.tar.gz

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

woebin-python-0.1.9.tar.gz (115.3 kB view details)

Uploaded Source

File details

Details for the file woebin-python-0.1.9.tar.gz.

File metadata

  • Download URL: woebin-python-0.1.9.tar.gz
  • Upload date:
  • Size: 115.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.7

File hashes

Hashes for woebin-python-0.1.9.tar.gz
Algorithm Hash digest
SHA256 2360bf8ab8014e85ac38a69c62325a925b129a71ea5ca6e77fb2958395db8531
MD5 1bd9fb1f9d78452e10ef355a270ffd2c
BLAKE2b-256 dec7a81d43753df3ed289d5dee054c1e91530a8368350a0e391b25088c75a37a

See more details on using hashes here.

Release history Release notifications | RSS feed

This release

0.1.9 This release

1 file

0.1.8

1 file

0.1.7

1 file

0.1.6

1 file

0.1.5

1 file

0.1.4

1 file

0.1.3

1 file

0.1.2

1 file

0.1.0

1 file

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page