Dear Statalisters
I am conducting analysis on the age at which a person has their first child. For anyone who does not have any children, this variable is coded as missing.
Does this warrant a Tobit model? On the basis that the variable is censored for individuals who do not have any children.
This might involve replacing the missing data with zero and running the following model:
I have a feeling this isn't appropriate - if so, any ideas what is a viable alternative model?
I am conducting analysis on the age at which a person has their first child. For anyone who does not have any children, this variable is coded as missing.
Does this warrant a Tobit model? On the basis that the variable is censored for individuals who do not have any children.
This might involve replacing the missing data with zero and running the following model:
Code:
replace ageat1st=0 if mi(ageat1st) tobit ageat1st X Y Z, ll(0)
Comment