Notice: On April 23, 2014, Statalist moved from an email list to a forum, based at statalist.org.
<<winmail.dat>>
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
RE: st: Recovering Names of Factor Variables for Displaying Table of Estimates
From
"Jesper Lindhardsen" <[email protected]>
To
<[email protected]>
Subject
RE: st: Recovering Names of Factor Variables for Displaying Table of Estimates
Date
Mon, 5 Dec 2011 21:47:46 +0100
Hmmm, Alan's suggestion works for me (Stata 11.2/windows) .....
clear
sysuse auto
reg weig foreign#c.length,coeflegend
est sto m1
estimates table m1, ///
stats(N) star(.1 .05 .01) ///
keep(1.foreign#c.length) ///
b(%9.4fc) stfmt(%9.0fc) style(oneline)
All the best, Jesper
-----Original Message-----
From: [email protected] on behalf of Lloyd Dumont
Sent: Mon 05/12/2011 19:10
To: [email protected]
Subject: Re: st: Recovering Names of Factor Variables for Displaying Table of Estimates
Thanks, Alan. That does generate a list of variables, including those created to capture the ineractions. But, I get the same problem.
For example, according to the coeflegend table, one of the interactions is called 1.X1#c.X2.
But, if I try to generate a table of estimates...
estimates table M1 M2, ///
stats(N) star(.1 .05 .01) ///
keep(1.X1#c.X2) ///
b(%9.4fc) stfmt(%9.0fc) style(oneline)
I get
X1#c: operator invalid
So, that leaves me back where I started...
----- Original Message -----
From: Alan Neustadtl <[email protected]>
To: [email protected]
Cc:
Sent: Monday, December 5, 2011 12:51 PM
Subject: Re: st: Recovering Names of Factor Variables for Displaying Table of Estimates
Try using the -coeflegend- option for regress or after you estimate
your model try -regress, coeflegend-.
Best,
Alan
On Mon, Dec 5, 2011 at 12:24 PM, Lloyd Dumont <[email protected]> wrote:
> Hello, everyone.
>
> I am estimating a few equations using factor variables. Some are just dummies, and some are dummies crossed with continuous variables. What I cannot figure out is how to reference the names of the newly-created two-way multiplicative interaction terms. I have even tried to copy the variable names from - mat list e(b) - . That works for the simple, one-way dummy, but not for the interaction terms. Is there a simple solution?
>
> If it helps, here is a minimal recreation of the estimation command...
>
> reg Y i.X1##c.X2 i.X1##c.X3 i.X1##c.X4
>
>
> Thank you! Lloyd
>
> *
> * For searches and help try:
> * http://www.stata.com/help.cgi?search
> * http://www.stata.com/support/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/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/statalist/faq
* http://www.ats.ucla.edu/stat/stata/