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
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file regresseasy-0.4.tar.gz.
File metadata
- Download URL: regresseasy-0.4.tar.gz
- Upload date:
- Size: 3.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.8.18
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
746fcc133dee4274145a402d5b8bbb6aec91fe7555a30df64c827cc5516d1f17
|
|
| MD5 |
d86261eea95061acfa3ad74bd7e98ca3
|
|
| BLAKE2b-256 |
b49abcf48510fda5bfc5a0f90fdcf10027034e7d941e18ba917b7930f45e9452
|
File details
Details for the file regresseasy-0.4-py3-none-any.whl.
File metadata
- Download URL: regresseasy-0.4-py3-none-any.whl
- Upload date:
- Size: 4.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.8.18
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d04f2322251dce95344e6ca339b1b19e1c050a7672323414d73695de13a48aed
|
|
| MD5 |
075cedefc7255ec96c40099b3f4a1639
|
|
| BLAKE2b-256 |
8fce82a599626aa803da32662f2b3d9581cb52907c6875f20350c0be1aa50f1b
|