我用了esttab来输出表格,但是程序运行完之后,并没有自动生成表格也没有报错(没有显示output written to然后设定输出的文件夹也没有文件),请问是什么原因呢?
[img]/* Estimation 1 Connection only */
regress promoted PBlink_colleague `fe', noconstant vce(cluster prov_id)
est store Est_1
/* Estimation 2 Growth only */
regress promoted dgrowth `fe', noconstant vce(cluster prov_id)
est store Est_2
/* Estimation 3 Both */
regress promoted PBlink_colleague dgrowth `fe', noconstant vce(cluster prov_id)
est store Est_3
/* Estimation 4 Interaction */
regress promoted PBlink_colleague dgrowth dgrowth_connection `fe', noconstant vce(cluster prov_id)
est store Est_4
esttab Est_1 Est_2 Est_3 Est_4 /*
*/ using "estimation/output/GOOD_JOB.rtf", replace /*
*/ star(* 0.10 ** 0.05 *** 0.01) b(3) se(3) noconstant /*
*/ keep(PBlink_colleague dgrowth dgrowth_connection) nomtitles nonotes/*
附件列表