Pandas read_hdf cannot parse tables that have been saved as hdf5 via kdb even though they are the same format.
pandas version: 2.2.1
kdb version: 4.0 2023.01.20
python: 3.11.8
// Create a kdb+ table and write this to a dataset in the appropriate group
q)N:10000
q)5#test_data:([]tstamp:asc N?0p;voltage:N?1f;volume:N?100;class:N?10h;on_off:N?0b)
tstamp voltage volume class on_off
-----------------------------------------------------------
2000.01.01D01:03:27.925513386 0.1458085 85 0 0
2000.01.01D05:46:27.469021975 0.4981235 99 9 0
2000.01.01D06:14:44.435858577 0.1976848 75 8 0
2000.01.01D09:38:22.896863222 0.2246491 63 4 0
2000.01.01D11:13:14.535212963 0.82371 45 1 0
// Naming of the file and kdb table to be written to HDF5
\d .hdf5
fname:"test.h5";
createFile[fname];
write_name:"data";
writeData[fname;write_name;test_data];
Then from python
pd.read_hdf("test.h5", "data")
raises
TypeError: cannot create a storer if the object is not existing nor a value are passed
Pandas read_hdf cannot parse tables that have been saved as hdf5 via kdb even though they are the same format.
Then from python