gpt4 book ai didi

python - 如何将索引列转换为数字?

转载 作者:行者123 更新时间:2023-11-28 22:25:14 26 4
gpt4 key购买 nike

我有一个数据框,其索引行是字符串数据类型。我希望它是数字并排序:

  col1 col2
1 25 33
3 35 544
2 24 52

预期:

  col1 col2
1 25 33
2 24 52
3 35 544

最佳答案

首先,使用pd.to_numeric 进行转换和赋值。

df.index = pd.to_numeric(df.index, errors='coerce')

要按索引对 DataFrame 进行排序,请调用 df.sort_index:

df.sort_index()

col1 col2
1 25 33
2 24 52
3 35 544

如果您想要就地操作,您可以为第二个命令指定 inplace=True,或者您可以将它传递到管道中。

关于python - 如何将索引列转换为数字?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45657856/

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