Hi everyone,
I want to estimate the effect of a training on a group of persons. I have a treated and a control group, and I would like to calculate a propensity score, first to decide if I keep everyone or only those in the common support, and then to introduce inverse probability weighting based on the propensity score.
My first step is to estimate the pscore and get the common support.
I did it using the "pscore" command and the "psmatch2" command.
Both commands provide the same propensity score, but the common supports produced by the two commands are different.
Here are my commands:
psmatch2 treatedgroup x1 x2 x3, com
pscore treatedgroup x1 x2 x3, pscore (pscore2) comsup
I got those propensity scores:
sum pscore2
Variable | Obs Mean Std. Dev. Min Max
-------------+--------------------------------------------------------
pscore2 | 613 .128659 .137982 2.88e-57 .8803939
. sum _pscore
Variable | Obs Mean Std. Dev. Min Max
-------------+--------------------------------------------------------
_pscore | 613 .128659 .137982 2.88e-57 .8803939
And those common support:
tab _support
psmatch2: |
Common |
support | Freq. Percent Cum.
------------+-----------------------------------
Off support | 5 0.82 0.82
On support | 608 99.18 100.00
------------+-----------------------------------
Total | 613 100.00
tab comsup if pscore2!=.
Dummy for |
obs. in |
common |
support | Freq. Percent Cum.
------------+-----------------------------------
0 | 125 20.39 20.39
1 | 488 79.61 100.00
------------+-----------------------------------
Total | 613 100.00
Why are the two common supports different and which one am I supposed to "trust" ?
Are they calculated in a different way ?
Thank you for your help.
I want to estimate the effect of a training on a group of persons. I have a treated and a control group, and I would like to calculate a propensity score, first to decide if I keep everyone or only those in the common support, and then to introduce inverse probability weighting based on the propensity score.
My first step is to estimate the pscore and get the common support.
I did it using the "pscore" command and the "psmatch2" command.
Both commands provide the same propensity score, but the common supports produced by the two commands are different.
Here are my commands:
psmatch2 treatedgroup x1 x2 x3, com
pscore treatedgroup x1 x2 x3, pscore (pscore2) comsup
I got those propensity scores:
sum pscore2
Variable | Obs Mean Std. Dev. Min Max
-------------+--------------------------------------------------------
pscore2 | 613 .128659 .137982 2.88e-57 .8803939
. sum _pscore
Variable | Obs Mean Std. Dev. Min Max
-------------+--------------------------------------------------------
_pscore | 613 .128659 .137982 2.88e-57 .8803939
And those common support:
tab _support
psmatch2: |
Common |
support | Freq. Percent Cum.
------------+-----------------------------------
Off support | 5 0.82 0.82
On support | 608 99.18 100.00
------------+-----------------------------------
Total | 613 100.00
tab comsup if pscore2!=.
Dummy for |
obs. in |
common |
support | Freq. Percent Cum.
------------+-----------------------------------
0 | 125 20.39 20.39
1 | 488 79.61 100.00
------------+-----------------------------------
Total | 613 100.00
Why are the two common supports different and which one am I supposed to "trust" ?
Are they calculated in a different way ?
Thank you for your help.
Comment