Answers for "in dataframe how to drop the last columns"

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 "in dataframe how to drop the last columns"

Python Answers by Framework

Browse Popular Code Answers by Language