您当前的位置:首页 > 计算机 > 编程开发 > Python

python df.reset_index报错AttributeError: ‘NoneType‘ object has no attribute ‘reset_index‘

时间:01-29来源:作者:点击数:

python dataframe reset_index()报错

今天用python给df重排index时,报错

AttributeError: 'NoneType' object has no attribute 'reset_index'

我的df中某些列有None,在进行下面这句话时,报错

df.sort_values(['datatime'],inplace=True).reset_index(drop=True)

修改为两句话就不报错了

df.sort_values(['datatime'],inplace=True)
df.reset_index(drop=True,inplace=True)

至于为什么放在一起就报错,我还不清楚

方便获取更多学习、工作、生活信息请关注本站微信公众号城东书院 微信服务号城东书院 微信订阅号
推荐内容
相关内容
栏目更新
栏目热门