Hello I have a regression of treatment on some individual characteristics in data set 1:
reg treatment1 female_1 age_1.... etc
I would like to use stored coefficients of this regression:
_b[female_1], _beta[age_1] to be able to calculate the probability of being treated in another data set by using the individual characteristics in data set 2:
basically it would be like:
treatment2=_b[constant]_b[female_1]*female_2+ _beta[age_1]*age_2+....
How to calculate this outcome in an estimation logic? i.e. as if I am calculating inverse probability?
Thanks in advance
reg treatment1 female_1 age_1.... etc
I would like to use stored coefficients of this regression:
_b[female_1], _beta[age_1] to be able to calculate the probability of being treated in another data set by using the individual characteristics in data set 2:
basically it would be like:
treatment2=_b[constant]_b[female_1]*female_2+ _beta[age_1]*age_2+....
How to calculate this outcome in an estimation logic? i.e. as if I am calculating inverse probability?
Thanks in advance
Comment