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

https://github.com/miozilla/statsmodols

statsmodols :boot::triangular_ruler: : Linear Regression Model # statsmodels.formula.api.ols # train # fit # pandas # matplotlib # statistics
https://github.com/miozilla/statsmodols

api azure boot formula harness learning least machine ml ordinary square statistics statsmodels

Last synced: 4 months ago
JSON representation

statsmodols :boot::triangular_ruler: : Linear Regression Model # statsmodels.formula.api.ols # train # fit # pandas # matplotlib # statistics

Awesome Lists containing this project

README

          

# statsmodols 👢📐
statsmodols : Linear Regression Model # statsmodels.formula.api.ols # train # fit # pandas # matplotlib # statistics

## Objectives
- To create and test a Linear Regression Machine Learning Model.
- Specifying models using formula strings and DataFrames
- To estimate parameters of linear regression model by minimizing sum of squared residuals using statistical OLS method.

## OLS Linear Regression ML Model

### OLS Regression Model General Formula
Predicted Value = β₀ + β₁·x₁ + β₂·x₂ + ... + βₚ·xₚ + ϵ

Where:
- β₀ = intercept
- β₁, β₂, ..., βₚ = regression coefficients
- x₁, x₂, ..., xₚ = input features (independent variables)
- ϵ = error term (residual)

![statsmodols001.png](./media/statsmodols001.png)

![statsmodols002.png](./media/statsmodols002.png)

![statsmodols003.png](./media/statsmodols003.png)

![statsmodols004.png](./media/statsmodols004.png)

![statsmodols005.png](./media/statsmodols005.png)

![statsmodols006.png](./media/statsmodols006.png)