“Entfernen Sie unbenannte Säule Pandas” Code-Antworten

Pandas fallen unbenannte Spalten ab

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
Dark Duck

pandas read_csv ignorieren unbenannte Spalten

pd.read_csv(file_name, index_col=0)
Magnificent Moth

Entfernen Sie unbenannte Säule Pandas

df.dropna(how='all', axis='columns', inplace=True)
AMi

Löschen unbenannter Spalten 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
Homely Hornet

Löschen Sie unbenannte Coloumns in Pandas

# Best method so far.
df = df.loc[:, ~df.columns.str.contains('^Unnamed')]
DEV MMV

Befreien Sie sich von unbenannten Kolumne Pandas

df.to_csv(path, index=False)
Worrisome Whale

Ähnliche Antworten wie “Entfernen Sie unbenannte Säule Pandas”

Fragen ähnlich wie “Entfernen Sie unbenannte Säule Pandas”

Weitere verwandte Antworten zu “Entfernen Sie unbenannte Säule Pandas” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen