标签: python pandas python-3.7
enter image description here
在我的height数据集中,列值增加,然后开始减少。我只想对数据进行排序以增加高度。降低高度后我不需要数据。
height
答案 0 :(得分:0)
您可以通过找到height列的最大值的索引,然后使用iloc重新分配仅包括该索引行的数据框来实现此目的:
iloc
x = df.idmax()['height'] df = df.iloc[:x+1]