We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
https://github.com/akelleh/causality/blob/aa458538224ec162b751c1e225b1ff02cb474191/causality/estimation/parametric.py#L201C34-L201C34 In the get_treated_matches function of the PropensityScoringModel class, after join, did you mean to delete the treated_index instead of control_index? Because I think what we need in the matched_treated is the control_index which has been deleted in this version.
get_treated_matches
PropensityScoringModel
join
treated_index
control_index
matched_treated
The text was updated successfully, but these errors were encountered:
I think so too.
Sorry, something went wrong.
https://github.com/akelleh/causality/blob/aa458538224ec162b751c1e225b1ff02cb474191/causality/estimation/parametric.py#L201C34-L201C34 del matched_treated['control_index'] should be del matched_treated['treated_index']
del matched_treated['control_index']
del matched_treated['treated_index']
No branches or pull requests
https://github.com/akelleh/causality/blob/aa458538224ec162b751c1e225b1ff02cb474191/causality/estimation/parametric.py#L201C34-L201C34
In the
get_treated_matches
function of thePropensityScoringModel
class, afterjoin
, did you mean to delete thetreated_index
instead ofcontrol_index
? Because I think what we need in thematched_treated
is thecontrol_index
which has been deleted in this version.The text was updated successfully, but these errors were encountered: