我的代码:
myfile = vaex.open('myfile.hdf5')
myfile['customer_id']
输出:
Length: 4,259,376 dtype: int64 (column)
0 9.4618e+08
1 9.43324e+08
2 9.43325e+08
3 9.43333e+08
4 9.43333e+08
...
如何将输出格式更改为正常格式,例如:
Length: 4,259,376 dtype: int64 (column)
0 946832204
1 943662763
2 943724406
3 943725670
4 943334500
...
谢谢!