首页上一页 1 下一页尾页 2 条记录 1/1页
快速示例38
发表在Python图书答疑
2022-02-16 悬赏:2 学分
《Python数据分析从入门到实践》第4章 Pandas进阶 118页-118页
是否精华
是
否
版块置顶:
是
否
作为初学者,按书上的代码录入后运行:
df_merge=pd.merge(df1,df2,on='编号',left_index=True,right_index=True)
报如下错误:pandas.errors.MergeError: Can only pass argument "on" OR "left_index" and "right_index", not a combination of both.
后来私自把代码改为:
df_merge=pd.merge(df1,df2,on='编号',left_index=False,right_index=False)
然后就运行正常了,得到了收上示例的结果。想问一下问题不知道出在哪?谢谢!