Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
  • Show
Clear All
new posts

  • general behavior of command collect get to e-class results

    Hi, I just would like to confirm my current understanding about the general behavior of command collect get, that is

    e-class results are not automatically captured.

    Code:
    . clear all
    
    . webuse auto
    (1978 automobile data)
    
    . qui collect: reg price mpg i.foreign
    
    . mat li e(b)
    
    e(b)[1,4]
                            0b.          1.            
               mpg     foreign     foreign       _cons
    y1  -294.19553           0   1767.2922   11905.415
    
    . tablesbuilder
    I can not find any reference to e-class results , in the tablesbulder windows.

    Click image for larger version

Name:	Capturar.PNG
Views:	1
Size:	43.7 KB
ID:	1745027



    to get them, i will need to

    Code:
    qui collect e(b): reg price mpg i.foreign
    is that correct ?
Working...
X