熊猫:如何对每一行应用转换?

时间:2017-04-28 10:10:55

标签: python pandas

最初我有一行,我想在一些非平凡的算法之后为每一行设置一些新列。

我可以这样做:

for index, row in df.iterrows():
    df.loc[df.index == index, 'NEW_COL'] = ...
但是它很笨拙。有没有办法来定义 lambda row - >行并将其应用于数据框?

1 个答案:

答案 0 :(得分:4)

我想你想要这样的东西:

def func(row):
    row.(here you can access any column of your dataframe) 

    return (the value in here will go to the 'NEW_COL' you are defining)

df['NEW_COL'] = df.apply(func,axis=1)

如果您想要更具体的内容,请在帖子中提供更多详细信息