我有两个数据框:
<div *ngIf="myService.myCoupons.length">
<ul *ngFor="let c of myService.myCoupons">
<li>{{c.title}}</li>
</ul>
</div>``
:df_new
time_start
0 1313575263
1 1313575263
2 1313575263
3 1313579775
4 1313579775
:df_information
我想使用 my_start value
0 1313575263 foo
1 1313579775 bar
中的值来填充df_information
中的新列。如果df_new
中的my_start
与df_information
中的time_start
相匹配,则使用df_new
中的相应value
来填充df_information
。这是我想要的输出:
df_new
我想出了一种使用两个嵌套循环执行此操作的方法,但是由于我实际上是在处理大型数据帧,因此需要大量时间来运行:
time_start value
0 1313575263 foo
1 1313575263 foo
2 1313575263 foo
3 1313579775 bar
4 1313579775 bar
有没有更有效的方法? 预先感谢您的帮助!