Skip to main content

Regression Model Performances

Project description

RegressModel

RegressModel is a Python package designed for streamlined regression analysis. It facilitates the process of training and evaluating multiple regression models on a dataset, providing a comprehensive comparison of their performance. This package is particularly useful for data scientists and machine learning practitioners who need to quickly assess the best regression model for their specific data.

Features

  • Easy comparison of various regression models.
  • Includes common models like Linear Regression, Lasso, Ridge, SVR, Random Forest, Decision Tree, and XGBoost.
  • Outputs performance metrics like R2 score, RMSE, MSE, MAE, and cross-validation scores.

Installation

You can install RegressModel using pip:

pip install regressmodel

Usage

Here is a simple example of how to use RegressModel:

from regressmodel.core import RegModelling
import pandas as pd
from sklearn.model_selection import train_test_split

# Sample dataset
df = pd.read_csv('your_dataset.csv')
X = df.drop('target_column', axis=1)
y = df['target_column']

# Splitting the dataset
X_train, X_test, y_train, y_test = train_test_split(X, y, test_size=0.2)

# Using RegressModel
results = RegModelling(X_train, y_train, X_test, y_test)

# The results variable will contain performance metrics of the models

Requirements

Python 3.6 or higher scikit-learn numpy xgboost

Contributing

Contributions to RegressModel are welcome! Feel free to fork the repository and submit pull requests.

License

RegressModel is licensed under the MIT License - see the LICENSE file for details.

Author

SaiKoushikGandikota

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

regresseasy-0.5.tar.gz (3.9 kB view details)

Uploaded Source

Built Distribution

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

regresseasy-0.5-py3-none-any.whl (4.4 kB view details)

Uploaded Python 3

File details

Details for the file regresseasy-0.5.tar.gz.

File metadata

  • Download URL: regresseasy-0.5.tar.gz
  • Upload date:
  • Size: 3.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.8.18

File hashes

Hashes for regresseasy-0.5.tar.gz
Algorithm Hash digest
SHA256 bfa80586416f076b41fb855e426faacac5f9bdb9ad0eac086e8aa0faebce4ff3
MD5 620522139066a88de12795218ab9c2e1
BLAKE2b-256 f4eab7ce512973cb58e83514cfb5db0efd6915f9803271d60d60b02ca3a6314c

See more details on using hashes here.

File details

Details for the file regresseasy-0.5-py3-none-any.whl.

File metadata

  • Download URL: regresseasy-0.5-py3-none-any.whl
  • Upload date:
  • Size: 4.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.8.18

File hashes

Hashes for regresseasy-0.5-py3-none-any.whl
Algorithm Hash digest
SHA256 c2c1cb826038e7932d315d03be8c819c5f06f710ceeb936cbceaf0354f791ee5
MD5 27630e3fd1ff1be909ddc3a156f3ddd0
BLAKE2b-256 302e2f1f8f0b994b6dd61f5cfa00546a26efcc64be6cb6357a02176fcdeb941e

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