在pd.df中查找具有相同值的行

时间:2018-06-19 07:56:10

标签: pandas python-3.6

我的df看起来像这样:

  asset type expiry    strike right position avgCost    multiplier  conId
1   ZN  FOP 2018-06-22  119.0   P    8.0    0.388950    1000    304985121
3   ZN  FOP 2018-06-22  119.0   C   -8.0    0.513950    1000    304984681
0   ZN  FOP 2018-07-27  119.5   C   -10.0   0.695199    1000    312231734
2   ZN  FOP 2018-07-27  119.5   P   -10.0   0.454570    1000    312232203

是否有一种通用方法可以在不知道任何值的情况下查找具有相同到期,打击和位置的行?

预期输出应为:

  asset type expiry    strike right position avgCost    multiplier  conId
0   ZN  FOP 2018-07-27  119.5   C   -10.0   0.695199    1000    312231734
2   ZN  FOP 2018-07-27  119.5   P   -10.0   0.454570    1000    312232203

感谢您的帮助!

0 个答案:

没有答案