当前位置:主页 > 软件编程 > Python代码 >

pandas 使用apply同时处理两列数据的方法

时间:2020-10-03 10:16:09 | 栏目:Python代码 | 点击:

多的不说,看了代码就懂了!

df = pd.DataFrame ({'a' : np.random.randn(6),
    'b' : ['foo', 'bar'] * 3,
    'c' : np.random.randn(6)})
def my_test(a, b):
 return a + b
df['Value'] = df.apply(lambda row: my_test(row['a'], row['c']), axis=1)
print df

您可能感兴趣的文章:

相关文章