Esttab/Estout is a user add-on, can be found here: http://repec.sowi.unibe.ch/stata/estout/
Is there anyway to change the labeling of vces per what I want? for example, this code:
will output this:
I wish to output something like this:
Can this be done?
Is there anyway to change the labeling of vces per what I want? for example, this code:
Code:
clear all sysuse auto eststo: reg price mpg eststo: reg price mpg, vce(cluster rep78) esttab, label stats(vce)
Code:
---------------------------------------------------- (1) (2) Price Price ---------------------------------------------------- Mileage (mpg) -238.9*** -226.4 (-4.50) (-2.74) Constant 11253.1*** 10965.2** (9.61) (6.89) ---------------------------------------------------- vce ols cluster ---------------------------------------------------- t statistics in parentheses * p<0.05, ** p<0.01, *** p<0.001
Code:
---------------------------------------------------- (1) (2) Price Price ---------------------------------------------------- Mileage (mpg) -238.9*** -226.4 (-4.50) (-2.74) Constant 11253.1*** 10965.2** (9.61) (6.89) ---------------------------------------------------- Standard Errors Regular Repair Record Clusters ---------------------------------------------------- t statistics in parentheses * p<0.05, ** p<0.01, *** p<0.001
Comment