pandas 根据多列的数据的值的情况判断来生成另外一列的数值?

根据两列数据的自定义函数产生新的一列数据
def do_merchant(x,y):
    return y/x
A_2Vehicle_count['vehicle_count']=map(lambda x,y:do_merchant(x,y),A_2Vehicle_count['ave_time'],A_2Vehicle_count['sum_time'])

A_2Vehicle_count是csv格式的一张表,其中x代表的是 A_2Vehicle_count['ave_time']这一列,y代表的是 A_2Vehicle_count['sum_time'],而 A_2Vehicle_count['vehicle_count']是表中新生成的列,列中的值是 do_merchant(x,y)的 返回结果。

你可能感兴趣的:(pandas,pandas应用)