接收“ValueError:设置带序列的数组元素”。

时间:2015-04-05 19:14:37

标签: python arrays numpy xlrd

我一直遇到这个代码的一些问题,试图得到两个1-D阵列的内在产品。感兴趣的代码如下所示:

def find_percents(i):
    percents=[]
    median=1.5/(6+2*int(i/12))
    b=2*median
    m=b/(7+2*int(i/12))
    for j in xrange (1,6+2*int(i/12)):
        percents.append(float((b-m*j)))
    percentlist=numpy.asarray(percents, dtype=float)
    #print percentlist
    total=sum(percentlist)
    return total, percentlist

def playerlister(i):
    players=[]
    for i in xrange(i+1,i+6+2*int(i/12)):
        position=sheet.cell(i,2)
        points=sheet.cell(i,24)
        if re.findall('RB', str(position.value)):
            vbd=points.value-rbs[24]
            players.append(vbd)
        else:
            pass
    playerlist=numpy.asarray(players, dtype=float)
    return playerlist

def others(i,percentlist,playerlist,total):
    alternatives=[]
    playerlist=playerlister(i)
    percentlist=find_percents(i)
    players=numpy.dot(playerlist,percentlist)

我在收到此附加代码的最后一行时收到以下错误:

  

ValueError:使用序列设置数组元素。

在此错误的大多数其他示例中,我发现错误是由于数组percentlistplayerlist中的数据类型不正确,但我的应该是浮点类型。如果它有帮助,我会在程序中稍后调用这些函数,如下所示:

for i in xrange(1,30):
    total, percentlist= find_percents(i)
    playerlist= playerlister(i)
    print type(playerlist[i])
    draft_score= others(i,percentlist,playerlist,total)

任何人都可以帮我弄清楚为什么我要用序列设置数组元素?如果有更多信息可能对您有所帮助,请与我们联系!同样为了清楚起见,playerlister正在使用xlrd模块从电子表格中提取数据,但数据是数字的,测试表明两个列表的类型都为numpy.float64

i的一次迭代中每个的形状和内容是

<type 'numpy.float64'>
(5,)
[  73.7  -94.4  140.9   44.8  130.9]
(5,)
[ 0.42857143  0.35714286  0.28571429  0.21428571  0.14285714]

1 个答案:

答案 0 :(得分:1)

您的函数find_percents返回一个双元素元组。 当您在others中调用它时,您将该元组绑定到名为percentlist的变量,然后您尝试在点积中使用该变量。

我的猜测是,通过在others中写这个是固定的:

def others(i,percentlist,playerlist,total):
    playerlist = playerlister(i)
    _, percentlist = find_percents(i)
    players = numpy.dot(playerlist,percentlist)

当然提供playerlistpercentlist始终具有相同数量的元素(由于缺少电子表格,我们无法检查这些元素)。

要验证,以下内容为您提供了准确的错误消息以及重现它所需的最少代码:

>>> import numpy as np
>>> a = np.arange(5)
>>> np.dot(a, (2, a))
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
ValueError: setting an array element with a sequence.