gpt4 book ai didi

python - 将 pandas DataFrame 存储在 PyTables 表中而不存储索引

转载 作者:太空宇宙 更新时间:2023-11-03 18:13:04 26 4
gpt4 key购买 nike

在许多 DataFrame.to_foo 函数中,我可以指定我不想编写索引

>>> help(df.to_csv)

Write DataFrame to a comma-separated values (csv) file

Parameters
----------
...
index : boolean, default True
Write row names (index)
...

DataFrame.to_hdf 是否存在类似功能?我不想将索引存储在 PyTables 表中。

最佳答案

您可以调用 h5py 并直接与 HDF5 交互。

data = df.values
with h5py.File('data.h5','w') as f:
f.create_dataset('my_table', data=data)

关于python - 将 pandas DataFrame 存储在 PyTables 表中而不存储索引,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25516923/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com