-
Notifications
You must be signed in to change notification settings - Fork 995
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
group varying factor levels fixed #3906
Conversation
Codecov Report
@@ Coverage Diff @@
## master #3906 +/- ##
==========================================
+ Coverage 99.42% 99.43% +<.01%
==========================================
Files 72 72
Lines 13502 13548 +46
==========================================
+ Hits 13425 13471 +46
Misses 77 77
Continue to review full report at Codecov.
|
const bool sourceIsFactor=isFactor(source), targetIsFactor=isFactor(target); | ||
if (sourceIsFactor && targetIsFactor) { | ||
// TODO: ^^ could be || in future; assign is already handling that so leave that for now. Then move more of assign to call here. | ||
if (!sourceIsFactor || !targetIsFactor) { |
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.
this is always false, maybe just wrapping into /* ... */
instead?
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.
it's there for the future when the todo in that comment is done
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.
make sense, but could be commented out code block too.
would be good to have a followup issue and link it from there
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.
It could be but I'd prefer not to. Ok?
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.
Of all the lines in this PR, this is the least significant to pick up on.
Closes #2199
Closes #2522