You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
.data as a numpy structured array which essentially is a table, able to contain different data types.
This functionality is also provided by pandas DataFrames or xarray Datasets which would bring more functionalities and make the code more readible. Main questions are:
Effort worth it?
How about performance?
The text was updated successfully, but these errors were encountered:
This is (or was) tested in #4 .
While this makes part of the code more accessible, performance is much better when using numpy structured arrays. In particular slicing was much faster.
Currently the data is stored in COO form with
This functionality is also provided by pandas DataFrames or xarray Datasets which would bring more functionalities and make the code more readible. Main questions are:
The text was updated successfully, but these errors were encountered: