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
[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
#2408
Open
Yihao120 opened this issue
Dec 29, 2023
· 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')})
The text was updated successfully, but these errors were encountered: