pandas函数返回多个值错误 - TypeError:不可用类型:'list'

时间:2018-04-24 23:00:46

标签: python pandas function return

我编写了一个pandas函数,它运行正常(我的代码的第二行)。当我尝试将我的函数输出分配给数据帧中的列时,我收到错误TypeError: unhashable type: 'list'

我发布了一些similar,我正在使用以下功能中该问题答案中显示的方法。但它仍然失败:(

import pandas as pd
import numpy as np

def benford_function(value):
    if value == '':
        return []

    if ("." in value):
         before_decimal=value.split(".")[0]
         if len(before_decimal)==0:
             bd_first="0"
             bd_second="0"

         if len(before_decimal)>1:
             before_decimal=before_decimal[:2]
             bd_first=before_decimal[0]
             bd_second=before_decimal[1]
         elif len(before_decimal)==1:
             bd_first="0"
             bd_second=before_decimal[0]

         after_decimal=value.split(".")[1]
         if len(after_decimal)>1:
             ad_first=after_decimal[0]
             ad_second=after_decimal[1]
         elif len(after_decimal)==1:
             ad_first=after_decimal[0]
             ad_second="0"
         else:
             ad_first="0"
             ad_second="0"



    else:
        ad_first="0"
        ad_second="0"
        if len(value)>1:
             bd_first=value[0]
             bd_second=value[1]
        else:
            bd_first="0"
            bd_second=value[0]
    return pd.Series([bd_first,bd_second,ad_first,ad_second])



df = pd.DataFrame(data = {'a': ["123"]})


df.apply(lambda row: benford_function(row['a']), axis=1)

df[['bd_first'],['bd_second'],['ad_first'],['ad_second']]= df.apply(lambda row: benford_function(row['a']), axis=1)

1 个答案:

答案 0 :(得分:1)

变化:

df[['bd_first'],['bd_second'],['ad_first'],['ad_second']] = ...

df[['bd_first', 'bd_second', 'ad_first', 'ad_second']] = ...

这将修复您的类型错误,因为索引元素必须是可清除的。您尝试通过传递单元素列表元组索引到Dataframe的方式将把每个单个元素列表解释为索引