Answers for "how to drop the first coumn of dataframe in python"

1

remove first row of dataframe

df = df.iloc[1: , :]
Posted by: Guest on September-17-2021
0

pandas delete first row

df = df.iloc[3:]
Posted by: Guest on February-24-2021

Code answers related to "how to drop the first coumn of dataframe in python"

Python Answers by Framework

Browse Popular Code Answers by Language