熊猫申请排

时间:2018-07-20 09:09:13

标签: python pandas function

我在使用DataFrame.apply()函数时遇到问题。

我需要获取行作为参数,但是它在每次调用中分别获取每一行的元素。

data frame here

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)

1 个答案:

答案 0 :(得分:0)

问题解决了。我在代码中混淆了应有的错误日志