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
BinaryTransform docstrings #495
Conversation
Codecov Report
@@ Coverage Diff @@
## master #495 +/- ##
=======================================
Coverage 96.08% 96.08%
=======================================
Files 108 108
Lines 8864 8864
=======================================
Hits 8517 8517
Misses 347 347
Continue to review full report at Codecov.
|
@@ -15,6 +15,18 @@ | |||
|
|||
|
|||
class GreaterThan(TransformPrimitive): | |||
"""Determines if values X are greater than values Y. |
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.
what are X and Y? this should be "Determines if values in one list are greater than another list". fine to keep x and y in extended description below though
let's apply this rule to all the primitives below too
7d07989
to
89283d8
Compare
81a81d0
to
9719382
Compare
Adding docstrings to BinaryTransform primitives, with a full description, args, and doctests.