Answers for "remove columns which has no data pandas"

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
0

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

Code answers related to "remove columns which has no data pandas"

Python Answers by Framework

Browse Popular Code Answers by Language