No project description provided
Project description
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
- Make sure Rust nightly is installed (Installation: https://www.rust-lang.org/tools/install, turn on nightly mode:
rustup default nightly). - Clone the repository:
git clone --depth=1 https://github.com/fomalhaut88/woebin.git - Go to
woebindirectory:cd woebin - 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
Project details
Release history Release notifications | RSS feed
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)
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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2360bf8ab8014e85ac38a69c62325a925b129a71ea5ca6e77fb2958395db8531
|
|
| MD5 |
1bd9fb1f9d78452e10ef355a270ffd2c
|
|
| BLAKE2b-256 |
dec7a81d43753df3ed289d5dee054c1e91530a8368350a0e391b25088c75a37a
|