Answers for "drop pandas columns by name"

87

delete column pandas dataframe

df.drop(['column_1', 'Column_2'], axis = 1, inplace = True)
Posted by: Guest on November-08-2020
1

pandas drop column by name

df.drop(columns=['Column_Name1','Column_Name2'], axis=1, inplace=True)
Posted by: Guest on September-15-2021
3

drop column dataframe

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

remove columns from a dataframe python

df = df.drop(df.columns[[0, 1, 3]], axis=1)  # df.columns is zero-based pd.Index
Posted by: Guest on May-20-2020
1

delete columns pandas

df = df.drop(df.columns[[0, 1, 3]], axis=1)
Posted by: Guest on August-22-2020
0

remove columns from dataframe

df.drop('col_name',1) #1 drop column / 0 drop row
Posted by: Guest on August-10-2020

Code answers related to "drop pandas columns by name"

Python Answers by Framework

Browse Popular Code Answers by Language