在学习《利用Python进行数据分析》一书时出现
TypeError: sort_index() got an unexpected keyword argument ‘by’
问题原因分析:pandas模块更新了,对有些方法进行重写,参数发生改变。
解决方法:将sort_index()
改为sort_values()
即可。
在学习《利用Python进行数据分析》一书时出现
TypeError: sort_index() got an unexpected keyword argument ‘by’
问题原因分析:pandas模块更新了,对有些方法进行重写,参数发生改变。
解决方法:将sort_index()
改为sort_values()
即可。