1
import numpy as np
import itertools
a = np.array([[1, 1, 3, 0, 0, 3, 2], [1, 3, 0, 0, 0, 3, 2], [1, 1, 10, 0, 0, 1, 0]])
for row in a:
    sites = a.shape[0]
    species = a.shape[1]
    Chao = []
    sing = np.where(row == 1, 1, 0)
    doub = np.where(row == 2, 1, 0)
    spec = np.where(row > 0, 1, 0)
    F1 = (sum(sing))**2
    F2 = float((sum(doub)))*2
    Sobs = sum(spec)
    if F2 == 0:
        Ch = Sobs
    else:
        Ch = Sobs + (F1/F2)
    Chao.append(Ch)
    print Chao

当我打印 Chao 时,这个循环的产品我目前有这个:

[7][4.5][4]

但是,我想要一个看起来像这样的数组或列表:

([7][4.5][4])

numpy 或 list 中的哪些函数允许我在 python 中执行此操作?

4

1 回答 1

1

逻辑是正确的。Chao 列表应该在循环之外初始化。

于 2012-04-26T04:34:14.877 回答