-
Notifications
You must be signed in to change notification settings - Fork 58
Description
User lkjlkj9asjpd9jp said:
Hi,
i am using python pandas to generate hdf tables (pytables is working behind the scenes). When I open the generated hdf5 file I can open the table and display its contents, however it seems that multiple columns are joined together apparently based on their data type (all float columns go together, all int columns as well, etc.). The column names are generic like 'values_block_1'. The information of the original column names is stored in the user attributes of the table where name='values_block_1' and value=[<orig_col_name0>, <o_c_n1>, ...]
I would like to have the possibility to display the columns and the data in the original layout: original column names, original number and order of columns. This would make it easier working with the data (e.g. comparing with different table)