gpt4 book ai didi

python - 等效于 Python Pandas 中的 R rbind.fill

转载 作者:行者123 更新时间:2023-11-28 20:19:58 25 4
gpt4 key购买 nike

R 的 plyr 函数有:rbind.fill() 这是一种附加列数不相等的数据框的方法。

python/pandas DataFrame有类似的功能吗?

最佳答案

您正在寻找函数concat:

import pandas as pd

df1 = pd.DataFrame({'col1':['a','b'],'col2':[33,44]})

df2 = pd.DataFrame({'col3':['dog'],'col2':[32], 'col4':[1]})

In [8]: pd.concat([df1, df2])
Out[8]:
col1 col2 col3 col4
0 a 33 NaN NaN
1 b 44 NaN NaN
0 NaN 32 dog 1

关于python - 等效于 Python Pandas 中的 R rbind.fill,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32828978/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com