laurencium / Causalinference

Causal Inference in Python
BSD 3-Clause "New" or "Revised" License
547 stars 91 forks source link

how to retrieve the matched observations? #2

Closed lincolnfrias closed 7 years ago

lincolnfrias commented 7 years ago

Is there a way to access matches_c and matches_t objects?

laurencium commented 7 years ago

No simple way without modifying the code unfortunately. The matches_c and matches_t objects are not very self-explanatory so I didn't bother making them accessible. If you'd like to access them the easiest way is probably to stick in a self. in front of the lines where they are created. Preserving them in self._dict is another possibility.

lincolnfrias commented 7 years ago

Ok, I'll try that.