# Get started with Python and Scikit-Learn for Regression models
![Logistic vs. Linear Regression Infographic](https://github.com/jlooper/ml-for-beginners/blob/main/2-Regression/1-Tools/images/Linear%20vs%20Logistic%20Regression.png)
![Logistic vs. Linear Regression Infographic](./images/logistic-linear.png)
> Infographic by [Dasani Madipalli](https://twitter.com/dasani_decoded)
# Build a Regression Model using Scikit-Learn: Regression Two Ways
![Linear vs Polynomial Regression Infographic](https://github.com/jlooper/ml-for-beginners/blob/main/2-Regression/3-Linear/images/3-1-Linear_Vs_Polynomial_Regression_.png)
![Linear vs Polynomial Regression Infographic](./images/linear-polynomial.png)
> Infographic by [Dasani Madipalli](https://twitter.com/dasani_decoded)
So far you have explored what regression is with sample data gathered from the pumpkin pricing dataset that we will use throughout this unit. You have also visualized it using Matplotlib. Now you are ready to dive deeper into regression for ML. In this lesson, you will learn more about two types of regression: basic linear regression and polynomial regression, along with some of the math underlying these techniques.
@ -31,7 +31,7 @@ Logistic Regression does not offer the same features as Linear Regression. The f
There are other types of Logistic Regression, including Multinomial and Ordinal. Multinomial involves having more than one categories - "Orange, White, and Striped". Ordinal involves ordered categories, useful if we wanted to order our outcomes logically, like our pumpkins that are ordered by a finite number of sizes (mini,sm,med,lg,xl,xxl).
![Multinomial vs Ordinal](https://github.com/jlooper/ml-for-beginners/blob/main/2-Regression/4-Logistic/images/Multinomial_Vs_Ordinal.png)
![Multinomial vs Ordinal Regression](./images/multinomial-ordinal.png)
> Infographic by [Dasani Madipalli](https://twitter.com/dasani_decoded)
| 23 | Help Peter avoid the Wolf! 🐺 | [Reinforcement Learning]() | tbd | [lesson]() | Dmitry |
| 24 | Real-World ML Scenarios and Applications | The Future of Machine Learning | Interesting and Revealing real-world applications of ML | [lesson](8-Real-World/2-Applications/README.md) | All |
| 24 | Real-World ML Scenarios and Applications | ML in the Wild | Interesting and Revealing real-world applications of classical ML | [lesson](8-Real-World/2-Applications/README.md) | All |
## Offline access
You can run this documentation offline by using [Docsify](https://docsify.js.org/#/). Fork this repo, [install Docsify](https://docsify.js.org/#/quickstart) on your local machine, and then in the root folder of this repo, type `docsify serve`. The website will be served on port 3000 on your localhost: `localhost:3000`.