Hi
I am regressing abnormal returns on set of accounting variables. The regression and the output in Stata are below:
reg AR1 a b c d ,r
Linear regression Number of obs = 56328
F( 4, 56323) = 108.73
Prob > F = 0.0000
R-squared = 0.0251
Root MSE = .8932
------------------------------------------------------------------------------
| Robust
AR1 | Coef. Std. Err. t P>|t| [95% Conf. Interval]
-------------+----------------------------------------------------------------
a .6628295 .0428066 15.48 0.000 .5789282 .7467307
b .4635614 .338008 1.37 0.170 -.1989364 1.126059
c .46176 .0571501 8.08 0.000 .3497455 .5737745
d .1211691 .0120079 10.09 0.000 .0976336 .1447045
_cons .040062 .0038999 10.27 0.000 .0324181 .0477059
It is clear that the coefficient on b is insignificant. I use the following Wald test:
test c=b
F( 1, 56323) = 0.00
Prob > F = 0.9960 // I conclude that both b and c coeff are indifferent
test b=0
F( 1, 56323) = 1.88
Prob > F = 0.1702 // I conclude that b is insignificantly different from zero
test a=c
F( 1, 56323) = 6.28
Prob > F = 0.0122 // I conclude that both a and c and significantly different
test a=b
F( 1, 56323) = 0.34
Prob > F = 0.5591 //// ? ////
Here comes my question; how can I interpret the results that the coeff on b and c are not different and that the coeff on b (which is statistically significant) is different from a, while c (which is statistically insignificant but indifferent from b) is indifferent from a ( that is highly significant in the model) ?? If the coeff on b is statistically insignificant why the Wald test results seems to support its equality with a, while the coefficient on c is statistically significant and similar magnitude to b , but statistically different from a ?
I am regressing abnormal returns on set of accounting variables. The regression and the output in Stata are below:
reg AR1 a b c d ,r
Linear regression Number of obs = 56328
F( 4, 56323) = 108.73
Prob > F = 0.0000
R-squared = 0.0251
Root MSE = .8932
------------------------------------------------------------------------------
| Robust
AR1 | Coef. Std. Err. t P>|t| [95% Conf. Interval]
-------------+----------------------------------------------------------------
a .6628295 .0428066 15.48 0.000 .5789282 .7467307
b .4635614 .338008 1.37 0.170 -.1989364 1.126059
c .46176 .0571501 8.08 0.000 .3497455 .5737745
d .1211691 .0120079 10.09 0.000 .0976336 .1447045
_cons .040062 .0038999 10.27 0.000 .0324181 .0477059
It is clear that the coefficient on b is insignificant. I use the following Wald test:
test c=b
F( 1, 56323) = 0.00
Prob > F = 0.9960 // I conclude that both b and c coeff are indifferent
test b=0
F( 1, 56323) = 1.88
Prob > F = 0.1702 // I conclude that b is insignificantly different from zero
test a=c
F( 1, 56323) = 6.28
Prob > F = 0.0122 // I conclude that both a and c and significantly different
test a=b
F( 1, 56323) = 0.34
Prob > F = 0.5591 //// ? ////
Here comes my question; how can I interpret the results that the coeff on b and c are not different and that the coeff on b (which is statistically significant) is different from a, while c (which is statistically insignificant but indifferent from b) is indifferent from a ( that is highly significant in the model) ?? If the coeff on b is statistically insignificant why the Wald test results seems to support its equality with a, while the coefficient on c is statistically significant and similar magnitude to b , but statistically different from a ?
Comment