使用pandas将一个数据帧的一个元素与其他数据帧的所有元素进行比较可以通过以下步骤实现:
import pandas as pd
df1 = pd.DataFrame({'A': [1, 2, 3], 'B': [4, 5, 6]})
df2 = pd.DataFrame({'A': [7, 8, 9], 'B': [10, 11, 12]})
for index, row in df2.iterrows():
for column in df2.columns:
if df1.loc[index, column] > row[column]:
print(f"df1[{index}, {column}] > df2[{index}, {column}]")
elif df1.loc[index, column] < row[column]:
print(f"df1[{index}, {column}] < df2[{index}, {column}]")
else:
print(f"df1[{index}, {column}] = df2[{index}, {column}]")
在上述代码中,使用iterrows()方法遍历df2的每一行,然后使用columns属性遍历每一列。通过使用loc[]方法,可以获取目标数据帧df1中指定行和列的元素,并与df2中对应的元素进行比较。
云+社区沙龙online第5期[架构演进]
小程序云开发官方直播课(应用开发实战)
云+社区技术沙龙[第15期]
云原生正发声
DBTalk
云+社区技术沙龙[第25期]
云+社区技术沙龙[第17期]
Elastic 实战工作坊
Elastic 实战工作坊
Hello Serverless 来了
领取专属 10元无门槛券
手把手带您无忧上云