gpt4 book ai didi

python - pandas read_table 中的行索引

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

我正在将以下数组读入 pandas 数据帧:

1 0.140000 0.180000 0.200000
2 0.240000 0.320000 0.320000
3 0.340000 0.430000 0.460000

pd.read_table("test.txt", sep = ' ', header = None, index_col= 0)

这有效,除了我得到一个空的“零”行:

      1     2     3
0
1 0.14 0.18 0.20
2 0.24 0.32 0.32
3 0.34 0.43 0.46

如何修复行索引?

谢谢。

最佳答案

实际上,“0”是该数据帧中的索引名称,要删除该名称,您可以使用以下命令:

pd.read_table(textfile, sep = ' ', header = None, index_col = 0).rename_axis(None)

输出:

      1     2     3
1 0.14 0.18 0.20
2 0.24 0.32 0.32
3 0.34 0.43 0.46

关于python - pandas read_table 中的行索引,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49179798/

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