TypeError: sort_index() got an unexpected keyword argument 'by'
时间: 2023-11-19 15:07:16 浏览: 158
TypeError: Unexpected keyword argument passed to optimizer: learning_rate 解决方法
这个错误通常是因为pandas版本更新导致的,sort_index()方法不再支持'by'参数。解决方法是将'by'参数替换为'sort_values()'方法中的'by'参数。例如,将df.sort_index(by='column_name')替换为df.sort_values(by='column_name')。
阅读全文