-
Notifications
You must be signed in to change notification settings - Fork 169
New issue
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
IntColumn Stats Diff #279
IntColumn Stats Diff #279
Conversation
@@ -247,7 +247,7 @@ def _add_helper(self, other1, other2): | |||
if "num_negatives" in self.__calculations.keys(): | |||
self.num_negatives = other1.num_negatives + other2.num_negatives | |||
|
|||
def _diff_helper(self, other_profile): | |||
def diff(self, other_profile, options=None): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ultimately renamed so the int column can just inherit this function instead of the int column creating its own. No reason for it to be private either.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
And allowing options for future use.
* Welcome to the best commit you've ever seen * This is almost ready. The code is still cooking * Some NICE code.
The only stats int has are numerical stats, so the difference function is pretty small