我正在尝试根据某种条件过滤一个数据帧并将过滤器数据附加到其他数据帧中,但这没有给我适当的结果。你能帮我吗?
示例:
df_s df_s1
table count date table count date
GRP 100 19-04 KOL 22 20-04
KOL 200 19-04 GRP 3244 20-04
GRP 3244 20-04
预期的final_df:
table count date
GRP 100 19-04
KOL 200 19-04
GRP 3244 20-04
KOL 22 20-04