pscore_match icon indicating copy to clipboard operation
pscore_match copied to clipboard

A Python package for propensity score matching

Results 5 pscore_match issues
Sort by recently updated
recently updated
newest added

.ix has been deprecated which meant the matching didn't work for me. I made a 1-line change to match.py, replacing the `.ix` call with `.iloc`. I tested the change in...

`Pandas.DataFrame.ix` is not applicable since Panda 1.0. The code is update to `Pandas.DataFrame.iloc` for newer version of Pandas.

The matching function in `Match.create()` seems to contain random processes which should be controlled by a fixed seed for better reproducibility.

From the documentation of pscore_match.pscore.PropensityScore() it is not clear that all categories have to binary in the form of zeros and ones (both the treatment and variables from the covariate...