“Pandas fallen unbenannte Spalten ab” 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

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

Befreien Sie sich von unbenannten Kolumne Pandas

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

Entfernen Sie unbenannte Spalten Pandas

df2.columns.str.match("Unnamed")
df2.loc[:,~df2.columns.str.match("Unnamed")]
Magnificent Moth

Lassen Sie alle unbenannten Spalten Pandas fallen

df.drop(df.columns[df.columns.str.contains('unnamed',case = False)],axis = 1, inplace = True)
Amr Al-najjar

Ähnliche Antworten wie “Pandas fallen unbenannte Spalten ab”

Fragen ähnlich wie “Pandas fallen unbenannte Spalten ab”

Weitere verwandte Antworten zu “Pandas fallen unbenannte Spalten ab” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen