索引到列pandas

代码示例

7
0

如何更改pandas dataframe中的indeces

>>> df.set_index('month')
       year  sale
month
1      2012    55
4      2014    40
7      2013    84
10     2014    31
4
0

将索引设置为列

df = df.set_index('col')
df['col'] = df.index
4
0

如何在dataframe python中更改索引

index = [1,2]
df.index = index
3
0

pandas从索引创建列

df.reset_index(level=0, inplace=True)
3
0

pandas将索引转换为列

df.reset_index(inplace=True)
0
0

如何使索引列作为普通列

df.reset_index(level=0, inplace=True)

其他语言

此页面有其他语言版本

Русский
..................................................................................................................
English
..................................................................................................................
Italiano
..................................................................................................................
Polski
..................................................................................................................
Română
..................................................................................................................
한국어
..................................................................................................................
हिन्दी
..................................................................................................................
Français
..................................................................................................................
Türk
..................................................................................................................
Česk
..................................................................................................................
Português
..................................................................................................................
ไทย
..................................................................................................................
Español
..................................................................................................................
Slovenský
..................................................................................................................
Балгарскі
..................................................................................................................
Íslensk
..................................................................................................................