I need to perform a logistic regression of my treatment and covariates
Then i need to predict propensity_scores // no problem here
logistic $treatment $colist **
predict propensity_score
I want to calculate 0.2 of the standard deviation of the logit of the propensity score.
Do I need to perform a logit of the propensity score? similar to this:
generate logit_propensity_score=logit(propensity_score)
summarize logit_propensity_score
Or it's already been done here **
Perhaps it's a problem of phrasing...not understanding the english properly
Then i need to predict propensity_scores // no problem here
logistic $treatment $colist **
predict propensity_score
I want to calculate 0.2 of the standard deviation of the logit of the propensity score.
Do I need to perform a logit of the propensity score? similar to this:
generate logit_propensity_score=logit(propensity_score)
summarize logit_propensity_score
Or it's already been done here **
Perhaps it's a problem of phrasing...not understanding the english properly