An open API service indexing awesome lists of open source software.

https://github.com/moindalvs/learn_simple_linear_regression

Learn about Simple Linear Regression for Data Science
https://github.com/moindalvs/learn_simple_linear_regression

box-cox-transformation correlation data-science data-transformation log-transformation model-validation ols-regression prediction-model simple-linear-regression sklearn statsmodels

Last synced: 7 days ago
JSON representation

Learn about Simple Linear Regression for Data Science

Awesome Lists containing this project

README

          

# Learn_Simple_Linear_Regression
## Predicting Adipose Tissue with the help of Waist Circumference
### Import libraries
### Import data
### Correlation
### Fitting a Linear Regression Model
### Predict for new data point
### Mean Squared Error (MSE)
### Root Mean Squared Error (RMSE)
## WC-AT example
![image](https://user-images.githubusercontent.com/99672298/160271715-8dcf4f03-d115-4b10-babd-910401a267c9.png)

### Creating model with SKLearn
### Model Validation
### Model with Statsmodels
### Applying Transformations
+ y = 𝛼 *log(x) + 𝛽
+ log(y) = 𝛼 *x + 𝛽
+ log(y) = 𝛼x + 𝛼π‘₯2 + 𝛽
+ BoxCox Transformation