Skip to main content

วิธีการคำนวณ Regression Line

learn.whatIsHeading

Regression analysis finds the best-fit line (y = mx + b) through a set of data points. It minimizes the sum of squared differences and is fundamental to predictive modeling.

สูตร

m = (n×Σxy - Σx×Σy) / (n×Σx² - (Σx)²); b = (Σy - m×Σx) / n

คำแนะนำทีละขั้นตอน

  1. 1Input data points (x, y)
  2. 2Calculate sums: Σx, Σy, Σxy, Σx²
  3. 3Compute slope m and intercept b using the formula

ตัวอย่างที่มีคำตอบ

อินพุต
Points: (1,2), (2,4), (3,5)
ผลลัพธ์
y ≈ 1.5x + 0.5
Least squares regression line

ข้อผิดพลาดที่ควรหลีกเลี่ยง

  • Confusing correlation with causation
  • Not checking for outliers affecting the line

พร้อมที่จะคำนวณแล้วหรือยัง? ลองใช้เครื่องคิดเลข Regression Line ฟรี

ลองด้วยตัวคุณเอง→

การตั้งค่า