Answers for "remove columns that start with pandas"

4

how to delete a column from a dataframe in python

del df['column']
Posted by: Guest on April-11-2020
0

remove a column from dataframe

del df['column_name'] #to remove a column from dataframe
Posted by: Guest on July-20-2020
0

remove columns that start with pandas

cols = [c for c in df.columns if c.lower()[:6] != 'string']
df=df[cols]
Posted by: Guest on March-16-2021

Code answers related to "remove columns that start with pandas"

Python Answers by Framework

Browse Popular Code Answers by Language