Dear all,
I am estimating trend rate by fitting the equation using OLS (-reg-), y=a+bx, where x is the time variable and b is the trend rate. Due to the existence of 1st-order autocorrelation, I have changed to use -prais- (Paris-Winsten estimation). However, the model becomes totally insignificant with Prob. >F=1.000 and R-square missing. However, if I use -prais, corc- (Cochrane-Orcutt estimation), then Prob.>F=0.8.
I would like to ask why using Prais-Winsten estimation (-prais-) leads to such a poor result. Stata manual has mentioned that for small sample size (n=20 in my case), Prais-Winsten has a "significant advantage", due to its preservation of the first observation.
Thank you very much!
The following is the output.
I am estimating trend rate by fitting the equation using OLS (-reg-), y=a+bx, where x is the time variable and b is the trend rate. Due to the existence of 1st-order autocorrelation, I have changed to use -prais- (Paris-Winsten estimation). However, the model becomes totally insignificant with Prob. >F=1.000 and R-square missing. However, if I use -prais, corc- (Cochrane-Orcutt estimation), then Prob.>F=0.8.
I would like to ask why using Prais-Winsten estimation (-prais-) leads to such a poor result. Stata manual has mentioned that for small sample size (n=20 in my case), Prais-Winsten has a "significant advantage", due to its preservation of the first observation.
Thank you very much!
The following is the output.
Code:
prais var1 var2 Iteration 0: rho = 0.0000 Iteration 1: rho = 0.4025 Iteration 2: rho = 0.4098 Iteration 3: rho = 0.4101 Iteration 4: rho = 0.4101 Iteration 5: rho = 0.4101 Prais-Winsten AR(1) regression -- iterated estimates Source | SS df MS Number of obs = 20 -------------+---------------------------------- F(1, 18) = 0.00 Model | 0 1 0 Prob > F = 1.0000 Residual | 9.02919029 18 .501621683 R-squared = . -------------+---------------------------------- Adj R-squared = . Total | 8.41900918 19 .443105746 Root MSE = .70825 ------------------------------------------------------------------------------ var1 | Coef. Std. Err. t P>|t| [95% Conf. Interval] -------------+---------------------------------------------------------------- var2 | .025779 .0421113 0.61 0.548 -.0626935 .1142515 _cons | 1.729973 .5127416 3.37 0.003 .6527428 2.807203 -------------+---------------------------------------------------------------- rho | .4101012 ------------------------------------------------------------------------------ Durbin-Watson statistic (original) 1.126068 Durbin-Watson statistic (transformed) 1.972264
Comment