Notice: On April 23, 2014, Statalist moved from an email list to a forum, based at statalist.org.
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: st: Problem with estout and rename
From
Rebecca Pope <[email protected]>
To
[email protected]
Subject
Re: st: Problem with estout and rename
Date
Wed, 20 Mar 2013 09:23:10 -0500
Cory,
Use the -varlables()- option instead.
** example **
version 11.2
sysuse auto, clear
qui regress price mpg
estimates store m1
qui regress price mpg foreign
estimates store m2
*local mpglbl: var label mpg
*estout m1 m2, varlabels(mpg "`mpglbl'")
estout m1 m2, varlabels(mpg "Milage (mpg)")
** end **
** output**
m1 m2
b b
Milage (mpg) -238.8943 -294.1955
foreign 1767.292
_cons 11253.06 11905.42
The two commented lines starting with -local- can be using if your
variable is already labeled with the text you want to use.
Regards,
Rebecca
On Wed, Mar 20, 2013 at 8:57 AM, Cory Smith <[email protected]> wrote:
> Hi statalisters,
>
> I'm running multiple regression models which are all pretty similar. I
> want to rename the main coefficient in all of them from x to "Transfer
> Coefficient." Unfortunately, while
>
> estout M1 using ... , rename(x "Transfer Coefficient") [i.e. one
> model] works as expected
> estout M1 M2 using ... , rename(x "Transfer Coefficient") [i.e.
> multiple models] produces weird results where "Transfer Coefficient",
> "Transfer", and "Coefficient" are all lines in the table.
>
> I could reproduce this in a simpler setting, so I think it's a general
> problem. Anyone know a solution? Thanks!
>
> Cory
>
> Stata version 11.2
> estout version just updated today using ssc install estout
> *
> * For searches and help try:
> * http://www.stata.com/help.cgi?search
> * http://www.stata.com/support/faqs/resources/statalist-faq/
> * http://www.ats.ucla.edu/stat/stata/
*
* For searches and help try:
* http://www.stata.com/help.cgi?search
* http://www.stata.com/support/faqs/resources/statalist-faq/
* http://www.ats.ucla.edu/stat/stata/