“indeks resetowania pandy rozpoczyna się od 0” Kod odpowiedzi

Zresetuj pand indeksu

df.reset_index(drop=True)
Exuberant Eel

RESET_INDEX (Drop = True)

In [194]: df.reset_index(drop=True)
Out[194]: 
  _worker_id  foo
0          A    1
1          B    2
2          C    3
Xerothermic Xenomorph

indeks resetowania pandy rozpoczyna się od 0

gapminder_ocean.reset_index(drop=True, inplace=True)
Blushing Barracuda

Przykład 1: Resetuj indeks

import pandas as pd

#define DataFrame
df = pd.DataFrame({'points': [25, 12, 15, 14, 19, 23, 25, 29],
                   'assists': [5, 7, 7, 9, 12, 9, 9, 4],
                   'rebounds': [11, 8, 10, 6, 6, 5, 9, 12]},
                   index=[0, 4, 3, 5, 2, 1, 7, 6])

#view DataFrame
print(df)

   points  assists  rebounds
0      25        5        11
4      12        7         8
3      15        7        10
5      14        9         6
2      19       12         6
1      23        9         5
7      25        9         9
6      29        4        12
Shy Skunk

Odpowiedzi podobne do “indeks resetowania pandy rozpoczyna się od 0”

Pytania podobne do “indeks resetowania pandy rozpoczyna się od 0”

Więcej pokrewnych odpowiedzi na “indeks resetowania pandy rozpoczyna się od 0” w Python

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu