更改pandas数据帧中索引的值

时间:2016-11-05 02:25:08

标签: python python-3.x pandas

我在dict中有一系列数据帧。

type(mydict[0])
pandas.core.frame.DataFrame

print(dict[0])

          0         1         2
0  0.278735  0.609862  0.085823
1  0.836997  0.739635  0.866059
2  0.691271  0.377185  0.225146

print(dict[1])

          0         1         2
3  0.435280  0.700900  0.700946
4  0.796487  0.018688  0.700566
5  0.900749  0.764869  0.253200

如何更改dict[1]索引的值,使其看起来像这样

print(dict[0])

          0         1         2
0  0.278735  0.609862  0.085823
1  0.836997  0.739635  0.866059
2  0.691271  0.377185  0.225146

print(dict[1])

          0         1         2
0  0.435280  0.700900  0.700946
1  0.796487  0.018688  0.700566
2  0.900749  0.764869  0.253200

1 个答案:

答案 0 :(得分:2)

尝试:

mydict[1].reset_index(drop=True, inplace=True)