dataframe行为降序列为升序排列
时间: 2023-11-18 15:58:33 浏览: 81
DataGrid升序和降序排列
4星 · 用户满意度95%
可以使用 pandas 库中的 sort_values() 方法将 dataframe 的行降序列转换为升序排列。示例代码如下:
```python
import pandas as pd
# 创建一个 dataframe
df = pd.DataFrame({'col1': [1, 3, 5], 'col2': [4, 2, 6], 'col3': [0, 7, 8]})
# 将行降序列转换为升序排列
df_sorted = df.sort_values(by=['col1'], ascending=True)
# 打印输出排序后的 dataframe
print(df_sorted)
```
输出为:
```
col1 col2 col3
0 1 4 0
1 3 2 7
2 5 6 8
```
阅读全文