Answers for "drop the last row of a dataframe"

9

drop the last row of a dataframe

df.drop(df.tail(n).index,inplace=True) # drop last n rows
Posted by: Guest on June-23-2020

Code answers related to "drop the last row of a dataframe"

Python Answers by Framework

Browse Popular Code Answers by Language