-
Notifications
You must be signed in to change notification settings - Fork 1k
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
bmerge() needs to handle mixed complex-(int,dbl,i64) joins explicitly #6627
Comments
wow nice table!!! yes the joins vignette seems appropriate. |
the table is symmetric so maybe change the upper triangle to white/blank to emphasize that? |
I should probably introduce asymmetry, because the resulting value _can_
depend on ordering, e.g. character-factor vs factor-character.
…On Thu, Nov 28, 2024, 5:15 AM Toby Dylan Hocking ***@***.***> wrote:
the table is symmetric so maybe change the upper triangle to white/blank
to emphasize that?
—
Reply to this email directly, view it on GitHub
<#6627 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AB2BA5LDA3N6NSHB6VN7FPL2C4JP5AVCNFSM6AAAAABST43GZ6VHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDKMBWGEYDKNBVGU>
.
You are receiving this because you authored the thread.Message ID:
***@***.***>
|
Hii, @tdhock i would like to work on this issue, please assign me. |
@MichaelChirico i guess changing the |
There is existing #6664 awaiting review, feel free to comment. (FYI you can look at the comment thread and it will link existing issues/PRs that link back to this issue; also, the issue page will show the assignee) |
hi |
Abhishek is waiting for my review on #6664 as I understand it. Haven't gotten to it yet. |
Follow-up to #6603.
We have this comment that's currently incorrect:
data.table/R/bmerge.R
Line 100 in 546259d
That's because
complex
is anORDERING_TYPE
:data.table/R/setkey.R
Line 150 in 546259d
At a glance, we should:
complex
the same asdouble
iffall(Im(x) == 0)
any(Im(x) != 0)
To facilitate spotting this kind of gap in the future, I made this:
Spreadsheet: https://docs.google.com/spreadsheets/d/1RhNhXRA_5frgeqF9_ZS0Sll94RVs0iFgb5u7DBrgpaQ/edit?usp=sharing
@tdhock, what do you think would be a good place to keep this table as documentation? The joins vignette?
The text was updated successfully, but these errors were encountered: