-
Notifications
You must be signed in to change notification settings - Fork 6
implement Frame #81
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
Milestone
Comments
There are several big issues to resolve:
We should see what xarray does here. |
@gdementen why? |
because currently read_csv returns LArrays where aggregates on the column axis work. This would be a massive backward incompatibility/pain in the * for our users if suddenly all their data loaded from .csv files failed to aggregate over the column axis. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
which would store different fields/columns with (potentially) different types.
Each field from an LFrame should also be accessible via
__getattr__
.We might want to use a ColumnArray instead of a numpy structured array like in LIAM2 as the storage backend so that we can add fields efficiently.
See the https://github.com/liam2/larray/tree/structured_array branch.
The text was updated successfully, but these errors were encountered: