Hello Statalisters,
i'm estimating the effect of wealth on the amount donated to charities, using data of the german socio-economic panel.
Because date on donations is censored at zero (negative donations are not possible) i`d like to use the heckman-ml estimator (one could also use tobit or two-step-method as laid out in "Microeconometrics Using Stata" by Cameron&Trivedi).
Doing my regressions, i realized that i don't know how to check the assumptions of normality and homoskedasticity of the error terms. First, i simply used the
and
command together with
to check (for normality in this case). But i believe now this is wrong as prediction- and forecast-errors are not the same as residuals (and no estimate for it), at least that is my understanding.
The afore mentioned book suggests to compute generalized residuals to test the assumptions of the tobit-estimation, but i don't believe that i could use the same formulas to compute generalized residuals for heckman, because heckman assumes two individual processes for selection and amount donated, whereas tobit assumes this is one.
Finally, i looked for some formal tests, like estat hettest for regress, but found none (if i had something like residuals for the heckman i could use eg. sktest, though).
Many thanks in advance!
Caspar
i'm estimating the effect of wealth on the amount donated to charities, using data of the german socio-economic panel.
Because date on donations is censored at zero (negative donations are not possible) i`d like to use the heckman-ml estimator (one could also use tobit or two-step-method as laid out in "Microeconometrics Using Stata" by Cameron&Trivedi).
Doing my regressions, i realized that i don't know how to check the assumptions of normality and homoskedasticity of the error terms. First, i simply used the
Code:
predict, stdp
Code:
predict, stdf
Code:
qnorm
The afore mentioned book suggests to compute generalized residuals to test the assumptions of the tobit-estimation, but i don't believe that i could use the same formulas to compute generalized residuals for heckman, because heckman assumes two individual processes for selection and amount donated, whereas tobit assumes this is one.
Finally, i looked for some formal tests, like estat hettest for regress, but found none (if i had something like residuals for the heckman i could use eg. sktest, though).
Many thanks in advance!
Caspar
Comment