How to correct a Dummy variable for Autocorrelation?
Posted: Tue Feb 10, 2009 12:34 pm
Hi at all!
This question actually follows from another thread. However, I thought it would be useful to post it separately.
I have the following regression equation system:
Now, if I want to correct for autocorrelation, I can write (e.g. for the first equation)
Now, a dummy variable is included in the regression system of the sort
Here, D can take either 1 or 0 and g is the coefficient before the Dummy variable.
My question is: how can I correct the Dummy variable for possible autocorrelation? Is it even important? The problem is: it is a dummy indicating 1 if the observation is after a certain date and 0 if the observation is before a certain date. So, after some time, all observations will have D=1.
I thank you very much.
Kind regards
M
This question actually follows from another thread. However, I thought it would be useful to post it separately.
I have the following regression equation system:
Code: Select all
y_1t = a + b_1*x_t + c*z_1t
y_2t = a + b_2*x_t + c*z_2t
Code: Select all
y_1t = a*(1-r) + b_1*(x_t-r*x_{t-1}) + c*(z_1t-r*z_1{t-1}) + r*y_1{t-1}
Code: Select all
y_1t = a + b_1*x_t + c*z_1t + g*D*z_1t
y_2t = a + b_2*x_t + c*z_2t + g*D*z_2t
My question is: how can I correct the Dummy variable for possible autocorrelation? Is it even important? The problem is: it is a dummy indicating 1 if the observation is after a certain date and 0 if the observation is before a certain date. So, after some time, all observations will have D=1.
I thank you very much.
Kind regards
M