Example 1

Given this input:

caption Estimates with Bequest Disabled, LogL = -108435
comment Utility Parameters
estimate $\beta$ yes -9.209 0.0286
estimate $\tau$ no -6.000
estimate $\rho$ yes -1.078 0.0288
estimate $\delta$ no -2.303
estimate $\theta$ no -9.000
estimate $\xi$ no -9.000
blank
comment Initial Assets Model
estimate Intercept($A_0$) yes 10.802 0.0290
estimate med\_lt yes -0.598 0.0312
estimate med\_gt yes 0.258 0.0366
estimate black yes -0.938 0.0348
estimate $\sigma_{A_0}$ yes 0.938 0.0081
blank
comment Measurement Error
estimate $\sigma_v$ yes 0.867 0.0036

and this nawk command:

     nawk -f epp2tex.nawk demo.epp > epp.out

we get


Table: Estimates with Bequest Disabled, LogL = -108435
 
  Parameter Estimate Standard Error
 
 
Utility Parameters
  β -9.209 0.0286
  τ -6.000  
  ρ -1.078 0.0288
  δ -2.303  
  θ -9.000  
  ξ -9.000  
 
Initial Assets Model
  Intercept(A0) 10.802 0.0290
  med_lt -0.598 0.0312
  med_gt 0.258 0.0366
  black -0.938 0.0348
  σA0 0.938 0.0081
 
Measurement Error
  σv 0.867 0.0036
 


Using this same input, but with the nawk command

     nawk -f epp2tex.nawk putfree=1 demo.epp > epp.out

we get


Table: Estimates with Bequest Disabled, LogL = -108435
 
  Parameter Free? Estimate Standard Error
 
 
Utility Parameters
  β Yes -9.209 0.0286
  τ No -6.000  
  ρ Yes -1.078 0.0288
  δ No -2.303  
  θ No -9.000  
  ξ No -9.000  
 
Initial Assets Model
  Intercept(A0) Yes 10.802 0.0290
  med_lt Yes -0.598 0.0312
  med_gt Yes 0.258 0.0366
  black Yes -0.938 0.0348
  σA0 Yes 0.938 0.0081
 
Measurement Error
  σv Yes 0.867 0.0036
 


Using this same input but with the nawk command

     nawk -f epp2tex.nawk putt=1 demo.epp > epp.out

we get


Table: Estimates with Bequest Disabled, LogL = -108435
 
  Parameter Estimate Standard Error t-statistic
 
 
Utility Parameters
  β -9.209 0.0286 -321.993
  τ -6.000    
  ρ -1.078 0.0288 -37.4306
  δ -2.303    
  θ -9.000    
  ξ -9.000    
 
Initial Assets Model
  Intercept(A0) 10.802 0.0290 372.483
  med_lt -0.598 0.0312 -19.1667
  med_gt 0.258 0.0366 7.04918
  black -0.938 0.0348 -26.954
  σA0 0.938 0.0081 115.802
 
Measurement Error
  σv 0.867 0.0036 240.833
 


Finally, using this same input but with the nawk command

     nawk -f epp2tex.nawk putfree=1 putt=1 demo.epp > epp.out

we get


Table: Estimates with Bequest Disabled, LogL = -108435
 
  Parameter Free? Estimate Standard Error t-statistic
 
 
Utility Parameters
  β Yes -9.209 0.0286 -321.993
  τ No -6.000    
  ρ Yes -1.078 0.0288 -37.4306
  δ No -2.303    
  θ No -9.000    
  ξ No -9.000    
 
Initial Assets Model
  Intercept(A0) Yes 10.802 0.0290 372.483
  med_lt Yes -0.598 0.0312 -19.1667
  med_gt Yes 0.258 0.0366 7.04918
  black Yes -0.938 0.0348 -26.954
  σA0 Yes 0.938 0.0081 115.802
 
Measurement Error
  σv Yes 0.867 0.0036 240.833