📌  相关文章
📜  pandas 检查列是否已排序 - Python 代码示例

📅  最后修改于: 2022-03-11 14:45:45.243000             🧑  作者: Mango

代码示例1
# credit to the Stack Overflow user in the source link

df.your_column.is_monotonic_increasing 
# or 
df.your_column.is_monotonic_decreasing