Tag: Linear Regression
-
Understanding Multiple Linear Regression

We have taken a look at Simple Linear Regression in Episode 4.1 where we had one variable x to predict y, but what if now we have multiple variables, not just x, but 𝑥₁,𝑥₂ and 𝑥₃ … to predict y — how would we approach this problem? I hope to explain in this article. Simple Linear Regression Recap…
-
Understanding Simple Linear Regression

This article is designed to teach the underlying theory of linear regression. How to code and implement this algorithm in Python will be included in episode 4.3. This article also covers some basic Data Science Terminology which is important to know for future episodes. What is Linear Regression? Linear regression is a common supervised machine…