“Drop doppelte Indexpandas” Code-Antworten

Pandas entfernen den wiederholten Index

df[~df.index.duplicated()]
Tough Tarantula

Drop doppelte Indexpandas

df3 = df3[~df3.index.duplicated(keep='first')]
Average Ant

DF -Index -Drop -Duplikate

df3 = df3[~df3.index.duplicated(keep='first')]
Attractive Alpaca

Pandas entfernen den wiederholten Index

idx = pd.Index(['lama', 'cow', 'lama', 'beetle', 'lama', 'hippo'])
idx.drop_duplicates(keep='first')
Index(['lama', 'cow', 'beetle', 'hippo'], dtype='object')
idx.drop_duplicates(keep='last')
Index(['cow', 'beetle','lamb', 'hippo'], dtype='object')
idx.drop_duplicates(keep='False')
Index(['cow', 'beetle','hippo'], dtype='object')
Tough Tarantula

Ähnliche Antworten wie “Drop doppelte Indexpandas”

Fragen ähnlich wie “Drop doppelte Indexpandas”

Weitere verwandte Antworten zu “Drop doppelte Indexpandas” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen