Seven numbers define every regression output. Learn what each one means, where it comes from, and how to compute it yourself.
This is a simplified regression output for a model predicting Sales from three marketing channels. Every tab on this page references this table.
| Variable | Coefficient | Std Error | T Stat | P-Value | Significant? | Lower 95% | Upper 95% |
|---|---|---|---|---|---|---|---|
| Intercept | 5000 | 1200 | — | — | — | — | — |
| TV Spend | 3.20 | 0.80 | — | — | — | — | — |
| Search Spend | 5.50 | 1.10 | — | — | — | — | — |
| Social Spend | 1.40 | 1.50 | — | — | — | — | — |
The Coefficient and Std Error columns come directly from the regression. Everything else—T Stat, P-Value, Significance, and the Confidence Interval bounds—is derived from those two numbers (plus the degrees of freedom). The remaining tabs show you exactly how.
As you visit each tab, the computed values will fill in automatically in this table. Come back here anytime to see the full picture.
The t-statistic measures how many standard errors the coefficient is away from zero. Larger absolute values mean the coefficient is more distinguishable from noise.
For TV Spend: t = 3.20 / 0.80 = 4.00. For Social Spend: t = 1.40 / 1.50 = 0.93. The bigger the t-stat, the stronger the evidence that the coefficient is not zero.
The p-value answers: If the true coefficient were zero, how likely would we see a t-stat this extreme (or more)? It uses the two-tailed t-distribution with df degrees of freedom.
Drag the slider to change the t-statistic. Watch the shaded tail areas (the p-value) grow and shrink in real time.
Significance is a yes/no decision: compare the p-value to your chosen threshold (alpha, typically 0.05).
The margin of error tells you how far the true coefficient could plausibly be from the estimate. It uses the critical t-value at your chosen confidence level.
In Excel: =TINV(0.05, 48) gives the two-tailed critical value. At df=48 and α=0.05, t_critical ≈ 2.011.
Each variable’s coefficient and 95% CI plotted on a number line. If the CI crosses zero (the dashed line), the variable is not significant.