Statalist


[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: st: Re: getting a list of dropped variables after estimation


From   Maarten buis <[email protected]>
To   [email protected]
Subject   Re: st: Re: getting a list of dropped variables after estimation
Date   Thu, 16 Oct 2008 09:51:02 +0100 (BST)

--- Jonah Gelbach <[email protected]> wrote:
> Does anyone know of a built-in way to get a list of variables that
> were dropped from estimation? 

You can use -indeplist- to get a list of all independent variables, and
a list of independent variables that have not been dropped. You can use
those two to create a list of variables that have been dropped, like in
the example below. To download -indeplist- type -findit indeplist-. 

*--------- begin example --------------
sysuse auto, clear
gen domestic = !foreign
reg mpg foreign domestic

indeplist, dropped
local all `r(X)'
indeplist 
local notdropped `r(X)'

local dropped : list all - notdropped
di "`dropped'"
*---------- end example ---------------
(For more on how to use examples I sent to the Statalist, see
http://home.fsw.vu.nl/m.buis/stata/exampleFAQ.html )

Hope this helps,
Maarten

-----------------------------------------
Maarten L. Buis
Department of Social Research Methodology
Vrije Universiteit Amsterdam
Boelelaan 1081
1081 HV Amsterdam
The Netherlands

visiting address:
Buitenveldertselaan 3 (Metropolitan), room N515

+31 20 5986715

http://home.fsw.vu.nl/m.buis/
-----------------------------------------


      
*
*   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/



© Copyright 1996–2024 StataCorp LLC   |   Terms of use   |   Privacy   |   Contact us   |   What's new   |   Site index