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中执行此操作?
答案 0 :(得分:1)
逻辑是正确的。 Chao列表应该在循环之外初始化。