|
stata的reg回归自变量和控制变量交换位置结果无变化吗
*==========基准模型:发明家高管对企业研发投入影响================
*================================================================
global firmcontrol_1 "L1.ln_assets L1.ln_firmage L1.ln_fixedpp L1.ln_salespp L1.leverage L1.cashassets_ratio"
*================================================================
global firmcontrol_2 "L1.ln_assets L1.ln_firmage L1.ln_fixedpp L1.ln_salespp L1.leverage L1.cashassets_ratio L1.MB_ratio L1.salesgrowth L1.ROA"
*================================================================
global firmcontrol_3 "L1.ln_assets L1.ln_firmage L1.ln_fixedpp L1.ln_salespp L1.leverage L1.cashassets_ratio L1.MB_ratio L1.salesgrowth L1.ROA L1.stockreturn L1.stockvolatility L1.herfindahl L1.herfindahl_sq"
*================================================================
reg rdsales_ratio i.year i.industry i.province ///
L1.preceo_inventor, r
est sto m1
reg rdsales_ratio i.year i.industry i.province ///
$firmcontrol_1 L1.preceo_inventor, r
est sto m2
reg rdsales_ratio i.year i.industry i.province ///
$firmcontrol_2 L1.preceo_inventor, r
est sto m3
reg rdsales_ratio i.year i.industry i.province ///
$firmcontrol_3 L1.preceo_inventor, r
est sto m4
esttab m1 m2 m3 m4, b(%12.3f) se(%12.3f) nogap compress ///
s(N r2 ar2) star(* 0.1 ** 0.05 *** 0.01)
这段代码里自变量放在最后L1.preceo_inventor,xtreg可能有影响吗
|

|