Check whether predictors improve regression model significantly. Use R squared or sums squares for testing. Review decisions, exports, formulas, FAQs, and interactive charts easily.
Choose an input mode, enter regression summary values, and submit to test overall model significance.
This example uses a model with 30 observations and 3 predictors.
| n | k | Alpha | R squared | SST | SSR | SSE | F statistic | P value | Decision |
|---|---|---|---|---|---|---|---|---|---|
| 30 | 3 | 0.0500 | 0.6200 | 100.0000 | 62.0000 | 38.0000 | 14.1404 | 1.1594e-5 | Reject H0: the regression is significant overall. |
The overall F test checks whether the regression model explains enough variation compared with unexplained error.
R squared: R² = SSR / SST
Mean square regression: MSR = SSR / k
Mean square error: MSE = SSE / (n - k - 1)
F statistic: F = MSR / MSE
Equivalent F form: F = (R² / k) / ((1 - R²) / (n - k - 1))
Adjusted R squared: 1 - ((1 - R²)(n - 1) / (n - k - 1))
Decision rule: Reject H0 when F is greater than the critical F, or when the p value is less than alpha.
It tests whether the regression model explains a meaningful share of variation. In practice, it checks whether at least one predictor has a nonzero slope in the full model.
Use R squared mode when your regression output already reports R², sample size, and predictor count. Entering SST also lets the calculator recover SSR and SSE values for reporting.
Use sums of squares mode when software gives you SSR and SSE directly. It is common in ANOVA tables, model comparison summaries, and regression diagnostics reports.
df1 is the numerator degrees of freedom and equals k. df2 is the denominator degrees of freedom and equals n minus k minus 1.
A model can fit the sample reasonably well yet still lack strong evidence overall. Small sample sizes, many predictors, or unstable data patterns can reduce the F test strength.
It is the probability of observing an F statistic at least this large if the null hypothesis were true. Smaller values provide stronger evidence against the null.
No. The F test checks overall model significance. Individual t tests examine each predictor separately, so both views are useful in regression analysis.
Typical assumptions include linearity, independent errors, constant error variance, and approximately normal residuals. Serious violations can distort p values and weaken interpretation.
Important Note: All the Calculators listed in this site are for educational purpose only and we do not guarentee the accuracy of results. Please do consult with other sources as well.