What is Degrees of Freedom?

 Great question! Degrees of Freedom (df) is a core concept in statistics, especially in regression, ANOVA, and hypothesis testing.


🎯 What is Degrees of Freedom (df)?

Degrees of Freedom represent the number of independent values in a calculation that are free to vary after certain restrictions (like means) have been applied.

In simple terms:

  • It's the number of values in a dataset that can change without violating a given constraint.


🧠 Why It Matters

Degrees of freedom are used to:

  • Calculate variances and standard errors

  • Determine the critical values in t-tests, F-tests, and chi-square tests

  • Assess the validity of models (like in regression or ANOVA)


πŸ“Š Degrees of Freedom in Common Contexts

1. Sample Variance

When calculating variance:

s2=(XiXˉ)2n1s^2 = \frac{\sum (X_i - \bar{X})^2}{n - 1}
  • The mean XΛ‰\bar{X} uses up 1 degree of freedom.

  • So the df = n - 1 (where nn is the number of observations)

2. ANOVA

SourcedfExplanation
Between Groups (SSB)k1k - 1
k = number of groups
Within Groups (SSW)nkn - k
n = total observations
Totaln1

One less than total observations

3. Regression Analysis

ComponentdfExplanation
Regression (SSR)kk
k = number of independent variables
Residual (SSE)nk1
1
n = total data points
Total (SST)n1n - 1
Always total observations minus 1

🎯 Conceptual Example (Finance)

Suppose you are analyzing sales data (Y) based on advertising (X) across 6 companies.

  • You estimate 1 intercept + 1 slope → 2 estimated values.

  • You had 6 data points (n = 6)

Then:

  • Total df = n1=5n - 1 = 5

  • Regression df = number of predictors = 1

  • Residual df = nk1=611=4n - k - 1 = 6 - 1 - 1 = 4

These df are used to compute the Mean Squares in the ANOVA table and to evaluate the F-statistic.


🧾 Summary

TypeFormulaWhat It Represents
Sample Meann1
One value (mean) used, others free to vary
ANOVA (Between)k1k - 1
Variation across groups
ANOVA (Within)nkn - k
Variation within groups
Regressionkk
Predictors used
Residual (Error)nk1n - k - 1
What's left after accounting for predictors

Think of degrees of freedom as the "budget of flexibility" you have in estimating parameters from data — every time you estimate a parameter (like a mean or regression coefficient), you "spend" one degree of freedom.

Comments

Popular posts from this blog

Research Methodology vs Research methods

Types of variables in Finance Research

Explain sum of squares.