Answers for "how to remove some of the element from the column in dataframe"

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

Code answers related to "how to remove some of the element from the column in dataframe"

Python Answers by Framework

Browse Popular Code Answers by Language