“Entfernen Sie unbenannte Spalten 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

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

Entfernen Sie unbenannte Spalten Pandas

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

Ähnliche Antworten wie “Entfernen Sie unbenannte Spalten Pandas”

Fragen ähnlich wie “Entfernen Sie unbenannte Spalten Pandas”

Weitere verwandte Antworten zu “Entfernen Sie unbenannte Spalten Pandas” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen