【发布时间】:2017-08-11 09:05:24
【问题描述】:
我刚刚问了以下问题
Pandas: how can I pass a column name to a function that can then be used in 'apply'?
我收到了很好的答案。但是,我忽略了这个问题的一个扩展,也很好奇。
我有一个函数:
def generate_confusion_matrix(row):
val=0
if (row['biopsy_bin']==0) & (row['pioped_logit_category'] == 0):
val = 0
if (row['biopsy_bin']==1) & (row['pioped_logit_category'] == 1):
val = 1
if (row['biopsy_bin']==0) & (row['pioped_logit_category'] == 1):
val = 2
if (row['biopsy_bin']==1) & (row['pioped_logit_category'] == 0):
val = 3
if row['pioped_logit_category'] == 2:
val = 4
return val
我希望它像这样通用:
def general_confusion_matrix(biopsy, column_name):
val=0
if biopsy==0:
if column_name == 0:
val = 0
elif column_name == 1:
val = 1
elif biopsy==1:
if column_name == 1:
val = 2
elif column_name == 0:
val = 3
elif column_name == 2:
val = 4
return val
这样我就可以在这个函数中应用它(这不起作用)。
def create_logit_value(df, name_of_column):
df[name_of_column + '_concordance'] = df.apply(lambda : general_confusion_matrix('biopsy', name_of_column + '_category'), axis=1)
问题似乎是,当您将列作为 df['biopsy'] 传递时,您将一系列传递给 general_confusion_matrix 函数,而不是每行的值,并且条件语句抛出和通常的
('The truth value of a Series is ambiguous. Use a.empty, a.bool(), a.item(), a.any() or a.all().', 'occurred at index 0')"
我已经尝试了 map 和 apply,但我不确定如何将引用数据框中列的 2 个参数传递给 lambda 语句中的函数。我想我可以使用 map,但同样,我如何通过它传递参数。我很抱歉写了两个密切相关的问题,但它们是不同的。
【问题讨论】: