Announcement

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

  • testing

    Checking to see if this is how one posts Stata code/results.
    Code:
    . webuse nlswork.dta, clear
    (National Longitudinal Survey.  Young Women 14-26 years of age in 1968)
    
    . gen fte = .5
    
    . replace fte = 1 if hours >=35
    (22516 real changes made)
    
    . 
    . table collgrad if ind_code ==11, c(count fte sum fte)
    
    ----------------------------------
    1 if      |
    college   |
    graduate  |     N(fte)    sum(fte)
    ----------+-----------------------
            0 |      5,409        4689
            1 |      3,071        2786
    ----------------------------------
    
    . disp 3071/8480
    .36214623
    
    . proportion collgrad if ind_code==11
    
    Proportion estimation               Number of obs    =    8480
    
    --------------------------------------------------------------
                 | Proportion   Std. Err.     [95% Conf. Interval]
    -------------+------------------------------------------------
    collgrad     |
               0 |   .6378538   .0052195      .6275611    .6480216
               1 |   .3621462   .0052195      .3519784    .3724389
    --------------------------------------------------------------
Working...
X