Group name acquisition and no lazy loading problem #2099
-
When opening the hdf5 file, you must specify the group name defined at the time of creation. How should I obtain this group name if I have forgotten it ? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hi!
You can think of HDF5 files as a sort of containers. They do not have a pre-defined structure or a standard.. So in vaex we have an expectation of where the data should be (location) and how it should be stored (columnar format). But i think the gist of your question goes beyond vaex.. probably search elsewhere online how to "browse" the structure of an hdf5 files. Maybe with
Calling |
Beta Was this translation helpful? Give feedback.
Hi!
You can think of HDF5 files as a sort of containers. They do not have a pre-defined structure or a standard.. So in vaex we have an expectation of where the data should be (location) and how it should be stored (columnar format). But i think the gist of your question goes beyond vaex.. probably search elsewhere online how to "browse" the structure of an hdf5 files. Maybe with
h5py
it can be done..Calling
df = df.materiali…