Skip to main content

Convert an XGBRegressor model to an Excel formula expression.

Project description

xgbexcel

Python package that converts an XGBRegressor model to an Excel formula expression.

How to start

First, you have to install the package.

pip install xgbexcel

How to convert XGBRegressor model to an Excel formula

  1. Load packages
from xgbexcel import XGBtoExcel
import numpy as np
from xgboost import XGBRegressor
  1. Create dummy dataset and fit XGBRegressor model
X_train, y_train = np.random.randint(0, 1000, (100, 2)), np.random.randint(0, 10, 100)
model = XGBRegressor(n_estimators=2, max_depth=1)
model.fit(X_train, y_train)
  1. Convert XGBRegressor model to an Excel formula
xgb_excel_expr = XGBtoExcel(model)
xgb_excel_expr.expression
  1. The features in the Excel formula are represented using the x1, x2, x3, etc. notation, where the numbers correspond to the enumeration of the features in the XGBRegressor model and X_train. You can manually rename the features in the Excel formula to match the desired column names in the Excel sheet. Once you have renamed the features, you can copy the expression in the Excel sheet as a formula.
feature_map = {'x1': 'feature1', 'x2': 'feature2'}
xgb_excel_expr.rename_features(feature_map)
xgb_excel_expr.expression
  1. Save Excel expression to a file
xgb_excel_expr.save_expr('dummy.txt')
  1. Enjoy

Try it yourself in the example notebook: howXGBtoExcel.ipynb

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

xgbexcel-0.0.1.tar.gz (3.8 kB view hashes)

Uploaded Source

Built Distribution

xgbexcel-0.0.1-py3-none-any.whl (4.3 kB view hashes)

Uploaded Python 3

Supported by

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