pandas 从头或尾部去掉 n 行,可以不用考虑是不是index行的数据值,某些时候去掉控制符数据行,还是有用的。
df.drop(df.tail(n).index) #从尾部去掉 n 行
df.dorp(df.head(n).index) #从头去掉 n 行
#可以加上 inplace=True 直接修改原 dataFrame
pandas 从头或尾部去掉 n 行,可以不用考虑是不是index行的数据值,某些时候去掉控制符数据行,还是有用的。
df.drop(df.tail(n).index) #从尾部去掉 n 行
df.dorp(df.head(n).index) #从头去掉 n 行
#可以加上 inplace=True 直接修改原 dataFrame