delete unnamed coloumns in pandas
# Best method so far.
df = df.loc[:, ~df.columns.str.contains('^Unnamed')]
delete unnamed coloumns in pandas
# Best method so far.
df = df.loc[:, ~df.columns.str.contains('^Unnamed')]
Remove the Unnamed column in pandas
df = df.loc[:, ~df.columns.str.contains('^Unnamed')]
In [162]: df
Out[162]:
colA ColB colC colD colE colF colG
0 44 45 26 26 40 26 46
1 47 16 38 47 48 22 37
2 19 28 36 18 40 18 46
3 50 14 12 33 12 44 23
4 39 47 16 42 33 48 38
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us