我正在运行pandas文档中的示例(https://pandas.pydata.org/pandas-docs/stable/generated/pandas.DataFrame.reindex.html) 我得到了一个意想不到的例外:
index = ['Firefox', 'Chrome', 'Safari', 'IE10', 'Konqueror']
df = pd.DataFrame({
'http_status': [200,200,404,404,301],
'response_time': [0.04, 0.02, 0.07, 0.08, 1.0]},
index=index)
df.reindex(['http_status', 'user_agent'], axis="columns")
TypeError: reindex() got an unexpected keyword argument "axis"
您的建议将不胜感激
答案 0 :(得分:1)
它是pandas under 0.21.0 problem,因此请使用一般解决方案:
df = df.reindex(columns=['http_status', 'user_agent'])