-
Notifications
You must be signed in to change notification settings - Fork 52
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
Add nrow and ncol fallback implementations #343
Conversation
Codecov ReportPatch coverage:
Additional details and impacted files@@ Coverage Diff @@
## main #343 +/- ##
==========================================
+ Coverage 94.46% 94.55% +0.09%
==========================================
Files 7 7
Lines 723 735 +12
==========================================
+ Hits 683 695 +12
Misses 40 40
☔ View full report in Codecov by Sentry. |
I can see that my implementation is incorrect, but let us wait for @quinnj to comment how this should be fixed (my implementation does not work correctly for all tables). |
Thank you Bogumil for addressing this issue. It would be really nice to get more explicit support in Tables.jl for A few comments:
|
This is just a convention that was already in DataFrames.jl before I started developing it. The convention originates from R I guess.
They could. The reason is that Tables.jl provides implementations while DataAPI.jl provides only API. And as such
Yes. That is why I have commented above that what should
Yes. |
@quinnj - I have updated the PR following your comment on |
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.
@bkamins, this LGTM; would you mind adding some simple tests that cover the new nrow
/ncol
definitions for the various Tables-owned table types? With that, feel free to merge and we can tag a new release.
Thank you! |
To help with issues like #342