Chow test

From HandWiki
Short description: Mathematical test proposed by Gregory Chow

The Chow test (Chinese: 鄒檢定), proposed by econometrician Gregory Chow in 1960, is a test of whether the true coefficients in two linear regressions on different data sets are equal. In econometrics, it is most commonly used in time series analysis to test for the presence of a structural break at a period which can be assumed to be known a priori (for instance, a major historical event such as a war). In program evaluation, the Chow test is often used to determine whether the independent variables have different impacts on different subgroups of the population.

Illustrations

Applications of the Chow test
Structural break (slopes differ) Program evaluation (intercepts differ)
At x=1.7 there is a structural break; separate regressions on the subintervals [0,1.7] and [1.7,4] delivers a better model than the combined regression (dashed) over the whole interval. Comparison of two different programs (red, green) in a common data set: separate regressions for both programs deliver a better model than a combined regression (black).

First Chow Test

Suppose that we model our data as

yt=a+bx1t+cx2t+ε.

If we split our data into two groups, then we have

yt=a1+b1x1t+c1x2t+ε

and

yt=a2+b2x1t+c2x2t+ε.

The null hypothesis of the Chow test asserts that a1=a2, b1=b2, and c1=c2, and there is the assumption that the model errors ε are independent and identically distributed from a normal distribution with unknown variance.

Let SC be the sum of squared residuals from the combined data, S1 be the sum of squared residuals from the first group, and S2 be the sum of squared residuals from the second group. N1 and N2 are the number of observations in each group and k is the total number of parameters (in this case 3, i.e. 2 independent variables coefficients + intercept). Then the Chow test statistic is

(SC(S1+S2))/k(S1+S2)/(N1+N22k).

The test statistic follows the F-distribution with k and N1+N22k degrees of freedom.

The same result can be achieved via dummy variables.

Consider the two data sets which are being compared. Firstly there is the 'primary' data set i={1,...,n1} and the 'secondary' data set i={n1+1,...,n}. Then there is the union of these two sets: i={1,...,n}. If there is no structural change between the primary and secondary data sets a regression can be run over the union without the issue of biased estimators arising.

Consider the regression:

yt=β0+β1x1t+β2x2t+...+βkxkt+γ0Dt+i=1kγixitDt+εt.

Which is run over i={1,...,n}.

D is a dummy variable taking a value of 1 for i={n1+1,...,n} and 0 otherwise.

If both data sets can be explained fully by (β0,β1,...,βk) then there is no use in the dummy variable as the data set is explained fully by the restricted equation. That is, under the assumption of no structural change we have a null and alternative hypothesis of:

H0:γ0=0,γ1=0,...,γk=0

H1:otherwise

The null hypothesis of joint insignificance of D can be run as an F-test with n2(k+1) degrees of freedom (DoF). That is: F=(RSSRRSSU)/(k+1)RSSU/DoF.

Remarks

  • The global sum of squares (SSE) is often called the Restricted Sum of Squares (RSSM) as we basically test a constrained model where we have 2k assumptions (with k the number of regressors).
  • Some software like SAS will use a predictive Chow test when the size of a subsample is less than the number of regressors.

References