Hello everyone,
With code of the following type:
In other words, each lag is treated as a distinct variable, logically enough.
Is there any way (without the manual work) to have my coefficients for the 1st lag in column 1, then the 2nd lag in column 2, etc?
Please let me know if this isn't clear enough. And thank you so much for your help.
John
With code of the following type:
eststo: xtlogit impairment ROE log_TA bshare opexp_prem int_rate output_gap growth_prem if type=="LH"| type=="M", iterate(50)I of course get a sort of checkerboard table which, at the top, reports the coefficients of X1, X2, etc; followed by the coefficients for L.X1, L.X2, etc; followed by the coefficients for L2.X1, L2.X2, etc.
eststo: xtlogit impairment L.ROE L.log_TA L.bshare L.opexp_prem L.int_rate L.output_gap L.growth_prem if type=="LH"| type=="M", iterate(50)
eststo: xtlogit impairment L2.ROE L2.log_TA L2.bshare L2.opexp_prem L2.int_rate L2.output_gap L2.growth_prem if type=="LH"| type=="M", iterate(50)
eststo: xtlogit impairment L3.ROE L3.log_TA L3.bshare L3.opexp_prem L3.int_rate L3.output_gap L3.growth_prem if type=="LH"| type=="M", iterate(50)
eststo: xtlogit impairment L4.ROE L4.log_TA L4.bshare L4.opexp_prem L4.int_rate L4.output_gap L4.growth_prem if type=="LH"| type=="M", iterate(50)
esttab using LH_regs1_roe.csv, pr2 replace
In other words, each lag is treated as a distinct variable, logically enough.
Is there any way (without the manual work) to have my coefficients for the 1st lag in column 1, then the 2nd lag in column 2, etc?
Please let me know if this isn't clear enough. And thank you so much for your help.
John
Comment