解决《利用python进行数据分析》P139报错问题 index must be monotonic increasing or decreasing
Posted 星光夏眠
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了解决《利用python进行数据分析》P139报错问题 index must be monotonic increasing or decreasing相关的知识,希望对你有一定的参考价值。
解决《利用python进行数据分析》P139报错问题 index must be monotonic increasing or decreasing
frame.reindex(index=[‘a‘,‘b‘,‘c‘,‘d‘],method=‘ffill‘,columns=states)
报错:index must be monotonic increasing or decreasing
修改代码:把method=‘ffill’拿出来
注意,是method的方法,参数ffill后面加"()"
frame4=frame.reindex(index=[‘a‘,‘b‘,‘c‘,‘d‘], columns=states).ffill()
结果为:
Texas Utah California a 1.0 NaN 2.0 b NaN NaN NaN c 4.0 NaN 5.0 d 7.0 NaN 8.0
————————————————
版权声明:本文为CSDN博主「木里先森」的原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/mr_muli/article/details/83962897
以上是关于解决《利用python进行数据分析》P139报错问题 index must be monotonic increasing or decreasing的主要内容,如果未能解决你的问题,请参考以下文章
python3 requests的post请求参数包含中文报错
利用python将文本文件导入数据库时,报错:Duplicate entry '...' for key 'PRIMARY'