vaex icon indicating copy to clipboard operation
vaex copied to clipboard

[BUG-REPORT] why the same dataframe and same groupby(vaex.agg.list) operation, one got error and one got correct if i export to hdf5 and loaded it back

Open Yihao120 opened this issue 6 months ago • 0 comments

version 4.17.1

error

df.groupby(by=['a', 'b', 'c']).agg({'res1': vaex.agg.list('d')}) 图片

correct

df.export_hdf5('tmp.hdf5') df = vaex.open('tmp.hdf5') df.groupby(by=['a', 'b', 'c']).agg({'res1': vaex.agg.list('d')})

Yihao120 avatar Dec 29 '23 03:12 Yihao120