Introduction
The bootstrap is a Monte Carlo strategy being employed in statistical analysis with growing popularity. This growing popularity among the practitioners is due to a couple of reasons. First, it helps overcome the small sample problem. As most econometric critical values derive from asymptotic distribution, it is often difficult to reconcile the small sample used in the estimation with these asymptotic results when testing hypotheses. Secondly, the approach is non-parametric in the sense that it is not based on a priori assumption about the distribution. The distribution is data-based and therefore bespoke to the internal consistency of the data used. In some cases, the analytical results are difficult to derive. Thus, when asymptotic critical values are difficult to justify because the observations are small, or the distributional assumptions underlying the results are questionable, one can instead employ bootstrap approach.
If you bootstrap, it figuratively means you are helping yourself out from the quicksand all by yourself, using the strap of your boots to lift yourself out. The same way, the approach does not require those stringent assumptions that clog the wheel of analysis. Thus, the bootstrap uses available data as the basis for computing the critical values through the process of sampling the data with replacement. The process of sampling this way is iterated many times, each iteration using the same length of observations as the original data. Each observation in the sample has equal chance of being included during each iteration. The sampled data, also called pseudo or synthetic data, are used to perform the analysis. The result is a collection of statistics or values that mimicks the distribution from where the observed data come from.
How it works...
The generic procedure to carrying out bootstrap simulation is as follows:
Suppose one has
Within the regression analysis, the same steps are involved although the focus is now on the parameters and the restrictions derived from them. To concretize the analysis, I suppose we have the following model:
C(5)=C(6)=C(7)=0
The critical values in this case are based on asymptotic distribution of
Bootstrapping the regression model
You can use bootstrap strategy instead. This is how you can proceed. Using the model above, for example, you can
- Estimate the model and obtain the residuals;
- De-mean the residuals by subtracting the mean of the residuals. The reason for this is to ensure that the residuals are somewhat centered around zero, the same way that the random errors they represent center around zero. That is,
. Let the (centered) residuals be represented as ; - Using the centered residuals and conditional on the estimated parameters, reconstruct the model as
where the hat symbolizes the estimated values in Step 1. In this particular exercise, the process is recursively carried out because of the lags of the endogenous variables among the regressors. Also note that the process is initialized by setting the . In static models, it is sufficient to substitute the estimated coefficients and the exogenous regressors. This is the stage where the (centered) residuals are sampled without replacement; - Using the computed pseudo data for endogenous variable,
, estimate the model: - Set up the restriction, C(5)=C(6)=C(7)=0, test the implied hypothesis, and save the statistic;
- Repeat Steps 3-5 B times. I suggest 999 times.
These are the steps involved in bootstrap simulation. The resulting distribution can then be used to decide whether or not there is a causal effect from variable
This addin
The Eviews addin, which can be downloaded here, carries out all the steps listed above for LS, ARDL, BREAKLS, THRESHOLD, COINTREG, VARSEL and QREG methods. It works directly with the equation object. This means you will first estimate your model just as usual and then run the addin on the estimated model equation. In what follows I show you how this can be used with two examples.
An example...
C(4)+C(5)=C(9)+C(10)=C(14)+C(15)=C(19)+C(20)
The model is estimated and the output is in Figure 1.
Another example...
ld c le ld(-1 to -3) d(le) d(le(-1))
C(1)/(1-C(3)-C(4)-C(5))=0
while for the slope (
Although the addin does not plot the graphs for these distributions, the vectors of their respectively values are generated and stored in the workfile. Therefore, you can work on them as you desire. In this example, I report the distributions of the two estimates of the long-run coefficients in Figures 6 and 7.C(2)/(1-C(3)-C(4)-C(5))=0
Working with Output
Apart from plotting the graphs, which you can present in your work, the addin gives you access to the simulated results in vectors. The three vectors that you will have after testing your restriction are bootcoef##, boottvalue## and f_bootwald##, where ## indicates the precedence number appended to every instance of the objects generated after the first time. The first reports the vector of estimates of coefficient if only one restriction is involved. The hypothesis involves only one restriction if there is only one equality (=) sign in it. boottvalue is the vector of the corresponding value in this case. f_bootwald refers to the F statistic for a hypothesis having more than one restriction. It reports the joint test. You can use these for specific, tailor-made, analysis in your research. Let me take you through one that may interest you. Can we compute the bootstrap confidence interval for the restriction tested previously? I suggest you do it for the restricted coefficient. For you to do this, you need both the mean value and standard deviation from the distribution, the latter depending on the mean value. But you don't need to go through that route because Eviews has inbuilt routines that help deliver a good number of statistics for everyday use. So you can compute the mean value directly using the following:
sdev=@stdev(bootcoef)
This routine computes the standard deviation given by:
scalar meanv=@mean(bootcoef)scalar sdev=@stdev(bootcoef)scalar z_u=@quantile(bootcoef, 0.025)scalar z_l=@quantile(bootcoef, 0.925)scalar lowerbound=meanv-z_l*sdevscalar upperbound=meanv-z_u*sdev
Using this code, you will find the lower bound to be 0.208 and the upper bound to be 0.466, while the mean value will be 0.439.
Perhaps you are interested further in robustness check. The bootstrap-t confidence interval can be computed. Use the following code snippet:
scalar meanv=@mean(bootcoef)scalar sdev=@stdev(bootcoef)vector zboot=(bootcoef-meanv)/sdevscalar t_u=@quantile(zboot, 0.025)scalar t_l=@quantile(zboot, 0.925)scalar lowerbound=meanv-t_l*sdevscalar upperbound=meanv-t_u*sdev
For more Eviews statistical routines that you can use for specific analysis, look them up here. Again, this addin can be accessed here. The data used can be accessed here as well.
Glad that you've followed me to this point.