其他分享
首页 > 其他分享> > pandas获得两列或更多列的行最小值

pandas获得两列或更多列的行最小值

作者:互联网

如果要获取mininum两列或更多列的行,请使用pandas.DataFrame.min并指定axis=1

data['min_c_h'] = data[['flow_h','flow_c']].min(axis=1)

# display(data)
   flow_c  flow_d  flow_h  min_c_h
0      82      36      43       43
1      52      48      12       12
2      33      28      77       33
3      91      99      11       11
4      44      95      27       27
5       5      94      64        5
6      98       3      88       88
7      73      39      92       73
8      26      39      62       26
9      56      74      50       50

 

标签:min,flow,50,最小值,88,多列,data,pandas,axis
来源: https://www.cnblogs.com/yuyanc/p/16434427.html