gpt4 book ai didi

python - 如何删除 Pandas 数据框的最后一行数据

转载 作者:IT老高 更新时间:2023-10-28 20:21:53 32 4
gpt4 key购买 nike

我认为这应该很简单,但我尝试了一些想法,但都没有奏效:

last_row = len(DF)
DF = DF.drop(DF.index[last_row]) #<-- fail!

我尝试使用负索引,但这也会导致错误。我一定还是误解了一些基本的东西。

最佳答案

删除最后 n 行:

df.drop(df.tail(n).index,inplace=True) # drop last n rows

同样,您可以删除前 n 行:

df.drop(df.head(n).index,inplace=True) # drop first n rows

关于python - 如何删除 Pandas 数据框的最后一行数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26921651/

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