索引重置reset_index(inplace=True) 中的inplace=True什么时候添加

Posted bravesunforever

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了索引重置reset_index(inplace=True) 中的inplace=True什么时候添加相关的知识,希望对你有一定的参考价值。

inplace=True :是指重置索引的结果是否作用在前面的数据上

 

我们并不能设置df.pivot_table(values=‘orderamount‘,index=‘month‘,aggfunc=sum) 输出结果的格式,所以在 

df.pivot_table(values=‘orderamount‘,index=‘month‘,aggfunc=sum) 上重置索引的时候,reset_index()中不能添加inplace=True.


但是变量a,是把 df.pivot_table(values=‘orderamount‘,index=‘month‘,aggfunc=sum)的结果赋给变量a了,

此时a和 “df.pivot_table(values=‘orderamount‘,index=‘month‘,aggfunc=sum)” 并没有等价关系,不能说a代表的是

“df.pivot_table(values=‘orderamount‘,index=‘month‘,aggfunc=sum)” ,a只是存储的是最终结果,

所以如果想重置a的索引,那么reset_index()中必须添加inplace=True.

 

a=df.pivot_table(values=orderamount,index=month,aggfunc=sum)
a.reset_index(inplace=True)
print(a)

b=df.pivot_table(values=orderamount,index=month,aggfunc=sum).reset_index()
print(b)

 

如果不想重置a的索引,但是想看索引重置后的格式,那么可以使用下面形式:

 

a=df.pivot_table(values=orderamount,index=month,aggfunc=sum)
d=a.reset_index()
print(a)
print("******")
print(d)

 

运行结果如下:

技术图片

以上是关于索引重置reset_index(inplace=True) 中的inplace=True什么时候添加的主要内容,如果未能解决你的问题,请参考以下文章

Pandas 数据清洗常见方法

pandas重置dataframe的索引(reset_index)如果索引不匹配dataframe操作时候的问题重置索引(不设置drop=true)远索引生成新的数据列

在 Python pandas 中,从 1 而不是 0 开始行索引而不创建额外的列

pandas set_index() reset_index()

pandas --index ,reindex, set_index, reset_index , reindex_like函数 之 set_index

pandas --index ,reindex, set_index, reset_index , reindex_like函数 之 set_index