有什麼方法可以比較兩行熊貓嗎?大熊貓兩行比較
我會在sql中這樣做。
abc = df[df['type'] == 'abc']
def = df[df['type'] == 'def']
,我堅持至於如何去這樣做:
Select * from table t1, table t2 where t1.price - t2.price > 10 and t1.type = 'abc' and t2.type = 'def'
我能想到的最好的辦法是在此基礎上減去大熊貓數據幀行?
喜歡的東西
price type
10 abc
10 def
30 abc
15 def
應該返回行
10 def
30 abc
15 def
你能加樣日期與期望的輸出?謝謝。 – jezrael
我有點困惑't1'和't2'是不同的表?如果是,爲什麼不在樣本中? – jezrael
我應該提到t1和t2是同一張表 – aceminer