-
Notifications
You must be signed in to change notification settings - Fork 1k
data.table names handling for unnamed matrix #4363
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
Conversation
|
@MichaelChirico this PR addresses issue raised by you. There are few tests that needs to be reviewed. |
|
Thanks for the ping. The PR looks good. I can't see which tests failed, would you mind updating the PR so at least they pop out on CI? |
Generated via commit c502cee Download link for the artifact containing the test results: ↓ atime-results.zip
|
|
I stripped out the part that fixes #3193 -- in retrospect, I would close that issue unfixed, you're right that it derives directly from data.table's default of Tests added since this PR was first opened expose another breaking change: data.table(matrix(1L, dimnames = list('a', 'b')))
## master
# b
# <int>
# 1: 1
## this PR
# V1
# <int>
# 1: 1I think we should continue to respect column names of a 1-column matrix input. |
MichaelChirico
left a comment
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.
Good to go from my side. Jan, PTAL and merge when you're ready given my edits.
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## master #4363 +/- ##
=======================================
Coverage 98.69% 98.69%
=======================================
Files 79 79
Lines 14687 14689 +2
=======================================
+ Hits 14496 14498 +2
Misses 191 191 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|

Closes #4124