我有一个看起来像这样的表:
import numpy as np
def checkIntersection(x1, x2, y1, y2):
x1 = x1 if x1 is not None else -np.inf
y1 = y1 if y1 is not None else -np.inf
x2 = x2 if x2 is not None else np.inf
y2 = y2 if y2 is not None else np.inf
return (x1 <= y1 and x2 >= y1) or (y1 <= x1 and y2 >= x1)
我希望它看起来像这样:
ID NAME
70307 Name 1
70307 Name 2
80694 Name 1
80694 Name 2
80694 Name 3
80694 Name 4
80694 Name 5
80694 Name 6
88692 Name 1
88692 Name 2
240676 Name 1
240676 Name 2
也许,如果可能的话,请在此过程中删除重复项。
有什么办法可以做到这一点?
谢谢!