Hi,
So I want to create tables using the following code :
estout m1 m2 m3, cells(b(star fmt(3)) t(par fmt(2))) legend label varlabels(_cons
> Alpha) stats(r2, fmt(3 0 1) label(R-sqr))
m1, m2, m3 are three different regression output which have been stored beforehand.
Since i noticed that Stata has a different default set for "significance stars" I would like to override this default by :
estout m1 m2 m3, cells(b(star starlevels(***0.01 **0.05 *0.1)) t(par fmt(2))) leg
> end label varlabels(_cons Alpha) stats(r2, fmt(3 0 1) label(R-sqr))
This gives me an option not allowed error.
I tried varies forms to include starlevels(***0.01 **0.05 *0.1) to the code but was not able to succeed.
I am pretty sure that the override command is correct but I probably get the sytax wrong.
Any help would be very much appreciated.
So I want to create tables using the following code :
estout m1 m2 m3, cells(b(star fmt(3)) t(par fmt(2))) legend label varlabels(_cons
> Alpha) stats(r2, fmt(3 0 1) label(R-sqr))
m1, m2, m3 are three different regression output which have been stored beforehand.
Since i noticed that Stata has a different default set for "significance stars" I would like to override this default by :
estout m1 m2 m3, cells(b(star starlevels(***0.01 **0.05 *0.1)) t(par fmt(2))) leg
> end label varlabels(_cons Alpha) stats(r2, fmt(3 0 1) label(R-sqr))
This gives me an option not allowed error.
I tried varies forms to include starlevels(***0.01 **0.05 *0.1) to the code but was not able to succeed.
I am pretty sure that the override command is correct but I probably get the sytax wrong.
Any help would be very much appreciated.
Comment