-
Notifications
You must be signed in to change notification settings - Fork 45
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
Possibility of TableOperations.jl for column access #790
Comments
For selecting rows, I'm hoping JuliaData/Tables.jl#278 will be more helpful, as it allows individual Tables formats to expose more efficient selection methods to the generic Tables.jl API, which TableOperations.jl cannot do. And one idea, is to subsume table-row access under the more generic But happy to go with your suggestion for TableOperations.jl for column access. |
Worth noting here that, as far as I know, |
TableTransforms.jl has many operations for selecting, filtering, ... generic Tables.jl tables. It is very aligned with ML pipelines and I would consider using it instead of TableOperations.jl, which got stuck in time and is very limited in terms of functionality. |
We should be able to apply methods from TableOperations.jl to reimplement the
selectrows
andselectcols
method for generic tables. This should help us avoid the issue we are currently experiencing with materializingNamedTuples
The text was updated successfully, but these errors were encountered: