Answers for "drop the last row and assign to a new dataframe python"

9

drop last row pandas

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 and assign to a new dataframe python"

Python Answers by Framework

Browse Popular Code Answers by Language