Bookmark and Share

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 10:15:44 -0500

Cory,
At the risk of sounding too combative, why would you want to do that?
Won't it confuse your readers to have different variables appear as if
they were the same thing in your table? It seems like you would have
to do an awful lot of explaining. I think in general, it is advisable
to not make readers (and especially reviewers) work too hard to follow
the information you've presented.

Regards,
Rebecca

On Wed, Mar 20, 2013 at 9:58 AM, Cory Smith <[email protected]> wrote:
> Hi Rebecca,
>
> Thanks for this. It's a good solution to the simple example I gave.
> Unfortunately, in trying to keep my post short, I didn't mention that
> I really do need to use rename(). In certain models, I use L.x [lag of
> x] in place of x and I want to have these coefficients show up in the
> same line. That is, the coefficient for x (in one model) and L.x (in
> another model) would both show up in the row entitled "Transfer
> Coefficient."
>
> Is there any way to fix my problem in this more complex example? Thanks!
>
> Cory
>
> On Wed, Mar 20, 2013 at 10:23 AM, Rebecca Pope <[email protected]> wrote:
>> 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/
> *
> *   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/


© Copyright 1996–2018 StataCorp LLC   |   Terms of use   |   Privacy   |   Contact us   |   Site index