1
假設有數據幀與以下數據Python - 基於另一列中的值獲取兩個colums的最大值還是最小值?
key score1 score2 count
1 0.87 0.13 0
2 0.67 0.33 1
3 0.46 0.54 1
4 0.28 0.72 0
5 0.41 0.59 1
什麼是查找分鐘的最短途徑[score1,score2]如果計數== 0或MAX [score1,score2]當計數> 0?
本解決方案已經是
data['mini']=data[[score1, score2]].min(axis=1)
data['maxi']=data[[score1, score2]].max(axis=1)
data['fin_score']= data['mini'].where(data['count']==0, data['maxi'])
是有方式,它可以由更脆(在1/2命令),像在Excel中,這將是如下面然後對面所有行拖動式
=IF(count>0,MAX(B2:C2),MIN(B2:C2))
結果想這
key score1 score2 count fin_score
1 0.87 0.13 0 0.13
2 0.67 0.33 1 0.67
3 0.46 0.54 1 0.54
4 0.28 0.72 0 0.28
5 0.41 0.59 1 0.59