concat() got an unexpected keyword argument 'combine'
时间: 2023-11-18 11:06:01 浏览: 149
Pandas:连接与修补 concat、combine_first
根据提供的引用内容,我们可以得知concat()函数并没有combine参数,因此出现"concat() got an unexpected keyword argument 'combine'"的错误提示是因为在调用concat()函数时使用了不存在的参数combine。如果想要合并两个或多个pandas对象,可以使用concat()函数的语法:pandas.concat(objs, axis=0, join='outer', ignore_index=False)。其中objs是要合并的pandas对象列表,axis是合并的轴方向,join是合并方式,ignore_index表示是否忽略原来的索引。如果想要使用其他参数,可以参考引用中的pd.concat()函数的语法。
阅读全文