作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个数据框,其索引行是字符串数据类型。我希望它是数字并排序:
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/
我是一名优秀的程序员,十分优秀!