Answers for "how to drop the last 10 elements from a dataframe field in python"

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 "how to drop the last 10 elements from a dataframe field in python"

Python Answers by Framework

Browse Popular Code Answers by Language