gpt4 book ai didi

python - 加入两个数据框并扩展其中一个的内容

转载 作者:行者123 更新时间:2023-11-28 20:56:00 27 4
gpt4 key购买 nike

df1 = pd.DataFrame([1,2,3],columns=['x'])
df2 = pd.DataFrame([[100,200,300]],columns=['y','w','z'])

如何通过扩展 df2 来匹配 df1 的行来连接两个数据帧?

这就是我要实现的目标

x   y   w   z  
1 100 200 300
2 100 200 300
3 100 200 300

最佳答案

如你所见赋值

df1.assign(**df2.iloc[0])
Out[413]:
x y w z
0 1 100 200 300
1 2 100 200 300
2 3 100 200 300

关于python - 加入两个数据框并扩展其中一个的内容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55385927/

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