Linear Regression Statistics Example 1

Follow the full solution, then compare it with the other examples linked below.

Example 1

hard
A regression line is y^=2.5+1.8x\hat{y} = 2.5 + 1.8x, where xx is hours studied and y^\hat{y} is predicted exam score. Interpret the slope and y-intercept.

Solution

  1. 1
    Step 1: Slope = 1.8: for each additional hour studied, the predicted exam score increases by 1.8 points.
  2. 2
    Step 2: Y-intercept = 2.5: when x=0x = 0 (no studying), the predicted score is 2.5. This may or may not be meaningful in context.
  3. 3
    Step 3: The equation predicts scores based on study hours, assuming a linear relationship.

Answer

Slope: each extra hour adds 1.8 points. Y-intercept: predicted score of 2.5 with zero hours (may not be practically meaningful).
In linear regression, the slope represents the rate of change in yy per unit change in xx. The y-intercept is the predicted value when x=0x = 0, which may or may not make sense in context.

About Linear Regression

Linear regression is a statistical method for modeling the relationship between a dependent variable and one or more independent variables by fitting a straight line that minimizes the sum of squared distances from data points to the line (least squares method).

Learn more about Linear Regression โ†’

More Linear Regression Examples