On Fri, Jul 15, 2011 at 11:37 AM, Ignacio Diaz-Emparanza
<ignacio.diaz-emparanza(a)ehu.es> wrote:
Is there any way of saving in a list the significative variables
that
results after the 'omit --auto' command?
I tried
<hansl>
ols Y const X1 X2 (...etc)
omit --auto
list uvar=$xlist
</hansl>
but I am seeing that $xlist maintains the variables from the initial
regression.
Were any variables in fact omitted in this case? I just tried
<hansl>
open data4-10
ols 1 0 2 3 4 5 6
list XL1 = $xlist
list XL1 print
omit --auto
list XL2 = $xlist
list XL2 print
</hansl>
and got output for the two lists:
? XL1
const CATHOL PUPIL WHITE ADMEXP REV
? XL2
const CATHOL WHITE
Allin Cottrell