Answers for "python dataframe remove one column"

2

remove column from dataframe

df.drop('column_name', axis=1, inplace=True)
Posted by: Guest on June-02-2020
1

delete unnamed coloumns in pandas

# Best method so far.
df = df.loc[:, ~df.columns.str.contains('^Unnamed')]
Posted by: Guest on May-24-2021
3

pandas dataframe delete column

del df['column_name']
Posted by: Guest on June-29-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 "python dataframe remove one column"

Python Answers by Framework

Browse Popular Code Answers by Language