Skip to main content

woe is a Python library designed to convert categorical and continuous variables into weight of evidence. Weight of evidence is a statistical technique used in information theory to measure the strength of a relationship between a binary target variable and a predictor variable. The library can be used for data preprocessing in predictive modeling or machine learning projects.

Project description

woe

woe is a Python library designed to convert categorical and continuous variables into weight of evidence. Weight of evidence is a statistical technique used in information theory to measure the "strength" of a relationship between a binary target variable and a predictor variable. The library can be used for data preprocessing in predictive modeling or machine learning projects.

installation

pip3 install woe-conversion

usage

from woe_conversion.woe import *

# create an instance of the WoeConversion class
woemodel = WoeConversion(binarytarget='survived', features=['categorical_variable_1','categorical_variable_2','continuous_variable_3'])

# fit the model using training data (train is a pandas dataframe)
woemodel.fit(train)

# transform the training and test data using the fitted model (train and test are pandas dataframes)
transformedtrain = woemodel.transform(train)
transformedtest = woemodel.transform(test)

In the above code, WoeConversion is the class that is used to perform the conversion of variables to weight of evidence. The binarytarget parameter is the name of the binary target column in your dataset, and features is a list of the columns that you want to convert to weight of evidence.

Once the model has been created, it is fit to the training data using the fit method. This method calculates the weight of evidence for each category in the specified columns, and stores the results in the model object.

The transform method is then used to transform the training and test data using the fitted model. This method replaces the original columns with their weight of evidence equivalents.

Note on Missing Values

The weight of evidence is also calculated for missing values. Therefore, missing values should not be imputed before calling the woe model.

Full working example

from woe_conversion.woe import *
import seaborn as sns
from sklearn.model_selection import train_test_split
from sklearn.linear_model import LogisticRegression

titanic = sns.load_dataset('titanic')
train, test = train_test_split(titanic, test_size=0.30,random_state=111,stratify=titanic['survived'])

woemodel = WoeConversion(binarytarget='survived', features=['age','sex','class','fare'])
woemodel.fit(train)

clf = LogisticRegression()
clf.fit(woemodel.transform(train)[['age','sex','class','fare']], train['survived'])

train['proba'] = clf.predict_proba(woemodel.transform(train)[['age','sex','class','fare']])[:,1]
test['proba'] = clf.predict_proba(woemodel.transform(test)[['age','sex','class','fare']])[:,1]

Author

woe was created by Bertrand Brelier. If you have any questions or issues, please feel free to contact the author.

Project details


Download files

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

Source Distribution

woe_conversion-0.3.0.tar.gz (5.8 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

woe_conversion-0.3.0-py3-none-any.whl (7.6 kB view details)

Uploaded Python 3

File details

Details for the file woe_conversion-0.3.0.tar.gz.

File metadata

  • Download URL: woe_conversion-0.3.0.tar.gz
  • Upload date:
  • Size: 5.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for woe_conversion-0.3.0.tar.gz
Algorithm Hash digest
SHA256 d45c4582f3d07128e59c02d7931bdc837ca5cb47096b7345585f8a480ad0a6af
MD5 1e7fafb7edbac7c86ebecb997df9c29d
BLAKE2b-256 45fe69deea8a3452e4f9f959a357375cab8b6914e8355317844069524be7bed1

See more details on using hashes here.

File details

Details for the file woe_conversion-0.3.0-py3-none-any.whl.

File metadata

  • Download URL: woe_conversion-0.3.0-py3-none-any.whl
  • Upload date:
  • Size: 7.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for woe_conversion-0.3.0-py3-none-any.whl
Algorithm Hash digest
SHA256 1be00fe85b03d61aeebbad2d5323b2103b04092e5616f36f553349b008e11d69
MD5 816d000b7a55022c38c6ccfeece80aee
BLAKE2b-256 4a769975dac95b4bd06841ba9d809e5c629a6b8fc7606ea17c5fe4f8668ea514

See more details on using hashes here.

Supported by

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