我在使用DataFrame.apply()函数时遇到问题。
我需要获取行作为参数,但是它在每次调用中分别获取每一行的元素。
def parser(row):
feature1 = row['feature1']
"""
do some computations with feature1
"""
feature = answer_from_previous_steps
label = row['label']
return [feature, label]
temp = df.apply(parser, axis=1)
答案 0 :(得分:0)
问题解决了。我在代码中混淆了应有的错误日志