Announcement

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

  • The outlay equivalent ratios of DEATON method

    I'm conducting about gender bias on household education expenditure, but i don't know exactly Stata command to calculate The outlay equivalent ratios using Deaton method, so I calculate manually. And I don't know if the calculation steps are correct or not?
    reg share_edu male_children female_children x1 x2 x3, robust
    scalar alpha_edu= _b[_cons]
    scalar beta_edu= _b[ln_ppc_exp]
    scalar eta_edu= _b[ln_hhsize]
    scalar gamma_boy_edu= _b[male_children]
    scalar gamma_girl_edu= _b[female_children]
    matrix V_edu= e(V)
    sum share_edu
    scalar mean_w_edu= r(mean)
    sum male_children female_children
    scalar mean_male_children = r(mean)
    scalar mean_female_children = r(mean)
    scalar pi_boy_edu= (eta_edu- beta_edu+ gamma_boy_edu- (gamma_boy_edu*mean_male_children + gamma_girl_edu*mean_female_children)) / (beta_edu+ mean_w_edu)
    display pi_boy_edu
    And another problem I don't know what command the author used to calculate the result table 2 and 3? (as attached image)
    Click image for larger version

Name:	Image 19-05-2025 at 20.56.JPG
Views:	1
Size:	83.0 KB
ID:	1777692




    Click image for larger version

Name:	Screen Shot 2025-05-20 at 13.50.31.png
Views:	1
Size:	592.7 KB
ID:	1777687
    Last edited by LEE CHAN; 20 May 2025, 01:01.

  • #2
    anyone can help me please?

    Comment

    Working...
    X