Metadata-Version: 2.1
Name: best-regression-model
Version: 0.1.1
Summary: It helps to find the best Regression model with the help of the Root Mean Square Value (RMSE) for the given regression model based on the given dataset
Home-page: https://github.com/ronakkkk/best_regression_model
Author: Ronak Bhagchandani
Author-email: rishibhagchandani123@gmail.com
License: Apache License 2.0
Platform: UNKNOWN
Description-Content-Type: text/markdown

Best Regression Model is used for supervised learning techniques where the target data is in continous form. It selects the best model from the eight regression model based on the Root Mean Square Value (RMSE). 

The eight regression model used in the given library are:

1. Linear Regression
2. Ridge Regression
3. Lasso Regression
4. ElasticNet Regression
5. Random Forest Regression
6. Support Vector Regression
7. Extra Trees Regression
8. Decision Tree Regression

#### User installation

If you already have a working installation of numpy, scipy and sklearn, the easiest way to install best-classification-model is using pip

#### `pip install best-regression-model`

#### Important links

Official source code repo: https://github.com/ronakkkk/best_regression_model

Download releases: https://pypi.org/project/best-regression-model/

#### Examples
```import

from best_regression_model import regression_models

import pandas

data = pandas.read_csv('Data.csv')

X = data.iloc[:, :-1]

Y = data['Target']

best_model, best_model_name, acc = regression_models.reg_model(X, Y)

print(best_model_name, " (RMSE):", acc)```

`__Output__:

ElasticNet Regression (RMSE):621.2574962618987`

 

