technicalresearchdir
3 views
11 slides
Nov 01, 2025
Slide 1 of 11
1
2
3
4
5
6
7
8
9
10
11
About This Presentation
basic concepts of regression
Size: 36.75 KB
Language: en
Added: Nov 01, 2025
Slides: 11 pages
Slide Content
Introduction to Regression • Regression is used to predict the value of one variable based on another. • It establishes a functional relationship between dependent (Y) and independent (X) variables.
Types of Regression • Simple Linear Regression: One independent variable. • Multiple Regression: Two or more independent variables.
Regression Line • The best-fit line representing the relationship between X and Y. Equation: Ŷ = a + bX where b = slope, a = intercept.
Least Squares Method • Minimizes the sum of squared residuals between observed and predicted Y values. • Ensures best possible line fit.
Example Problem Given data: X = [1,2,3,4,5], Y = [2,3,5,4,6] Step 1: Compute X̄ and Ȳ. Step 2: Find b = 0.8, a = 1.6 Equation: Ŷ = 1.6 + 0.8X
Interpretation of r² • r² = Coefficient of determination. • Explains proportion of variance in Y predicted from X. • Example: r² = 0.81 → 81% variation in Y explained by X.
Multiple Regression • Ŷ = a + b₁X₁ + b₂X₂ + ... + bₙXₙ • Useful when outcome depends on several factors.
Regression Toward the Mean • Extreme observations tend to move closer to the mean in subsequent measurements.
Applications of Regression • Forecasting sales, demand, prices. • Predicting academic performance. • Medical research and diagnostics.
Summary • Regression predicts dependent variable values. • Uses least squares method for best fit. • r² measures model accuracy.