Answers for "cutting out first column of a dataframe python"

4

drop a column in pandas

note: df is your dataframe

df = df.drop('coloum_name',axis=1)
Posted by: Guest on May-11-2020
3

drop column dataframe

df.drop(columns=['Unnamed: 0'])
Posted by: Guest on April-30-2020

Code answers related to "cutting out first column of a dataframe python"

Python Answers by Framework

Browse Popular Code Answers by Language