Guest:
1) -curetr- refers to CEO aged <55: it is barely statistical significance and it has a negative effect on the regressand;
2) -age_split_>55-: it refers to the level 1 of your categorical variable when the -curetr-=0. Set aside the trivial consideration that this variable gives an unbelievable representation of the reality, it fails to reach statistical significance amd, as Jeff pointed out, you cannot rule out that ist coefficient=0;
3) the interaction between -CEO aged <55- and -curetr- is positive and reaches statistical significance.
4) as far as -lincom- is concerned, please find below a toy-example (I used -allbaselevels- estimatio options to have a clearer view of my code):
1) -curetr- refers to CEO aged <55: it is barely statistical significance and it has a negative effect on the regressand;
2) -age_split_>55-: it refers to the level 1 of your categorical variable when the -curetr-=0. Set aside the trivial consideration that this variable gives an unbelievable representation of the reality, it fails to reach statistical significance amd, as Jeff pointed out, you cannot rule out that ist coefficient=0;
3) the interaction between -CEO aged <55- and -curetr- is positive and reaches statistical significance.
4) as far as -lincom- is concerned, please find below a toy-example (I used -allbaselevels- estimatio options to have a clearer view of my code):
Code:
use "https://www.stata-press.com/data/r17/nlswork.dta"
. xtreg ln_wage i.msp##c.age, allbase fe vce(cluster idcode)
Fixed-effects (within) regression Number of obs = 28,494
Group variable: idcode Number of groups = 4,710
R-squared: Obs per group:
Within = 0.1081 min = 1
Between = 0.0854 avg = 6.0
Overall = 0.0776 max = 15
F(3,4709) = 332.16
corr(u_i, Xb) = 0.0194 Prob > F = 0.0000
(Std. err. adjusted for 4,710 clusters in idcode)
------------------------------------------------------------------------------
| Robust
ln_wage | Coefficient std. err. t P>|t| [95% conf. interval]
-------------+----------------------------------------------------------------
msp |
0 | 0 (base)
1 | .2385289 .0277337 8.60 0.000 .1841578 .2929
|
age | .0231041 .0008404 27.49 0.000 .0214566 .0247517
|
msp#c.age |
0 | 0 (base)
1 | -.0084631 .0010018 -8.45 0.000 -.0104271 -.0064991
|
_cons | 1.011791 .0231926 43.63 0.000 .9663223 1.057259
-------------+----------------------------------------------------------------
sigma_u | .40655792
sigma_e | .30250158
rho | .64365873 (fraction of variance due to u_i)
------------------------------------------------------------------------------
. mat list e(b)
e(b)[1,6]
0b. 1. 0b.msp# 1.msp#
msp msp age co.age c.age _cons
y1 0 .23852893 .02310413 0 -.00846311 1.0117906
. lincom [1.msp] + [1.msp#age]
( 1) 1.msp + 1.msp#c.age = 0
------------------------------------------------------------------------------
ln_wage | Coefficient Std. err. t P>|t| [95% conf. interval]
-------------+----------------------------------------------------------------
(1) | .2300658 .0267675 8.59 0.000 .1775889 .2825427
------------------------------------------------------------------------------
.

Comment