From 36ce7c1e7b82d14c741f6eaec57d4a8f3bd517e6 Mon Sep 17 00:00:00 2001 From: Yuktha Gangadhari Date: Sun, 8 Feb 2026 12:21:37 +0530 Subject: [PATCH] docs: add beginner note explaining linear regression --- 2-Regression/3-Linear/README.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/2-Regression/3-Linear/README.md b/2-Regression/3-Linear/README.md index a23007767..7dca3b9d9 100644 --- a/2-Regression/3-Linear/README.md +++ b/2-Regression/3-Linear/README.md @@ -1,3 +1,10 @@ +### Beginner Note + +Linear regression is used when we want to predict a **numerical value** (for example, house price, temperature, or sales). +It works by finding a straight line that best represents the relationship between input features and the output. + +In this lesson, we focus on understanding the concept before exploring more advanced regression techniques. + # Build a regression model using Scikit-learn: regression four ways ![Linear vs polynomial regression infographic](./images/linear-polynomial.png)