Multiple Linear Regression

Predict a continuous variable from multiple predictors.

Definition

Multiple linear regression models the relationship between a continuous dependent variable and several independent variables. It quantifies the effect of each predictor while controlling for the others.

When to use it

Requirements

What StatsLab computes

Worked example

Context : Predicting performance score (0-100) from age, experience, and stress level.

Result : R² = 0.61, F(3, 96) = 50.2, p < 0.001

Interpretation : The model explains 61% of score variance. Experience (β = 0.45, p < 0.001) and stress (β = −0.38, p < 0.001) are the most important predictors. Age is not significant (p = 0.12).

Run this analysis