替换元素NP数组

时间:2019-02-01 16:25:35

标签: python arrays numpy

我有这个nparray:

[[0. 0. 0. 0. 1.]
 [1. 0. 0. 0. 0.]
 [0. 0. 1. 0. 0.]
 ...
 [0. 0. 1. 0. 0.]
 [0. 0. 0. 0. 1.]
 [1. 0. 0. 0. 0.]]

我想做这样的事情:

for item in array :
        if item[0] == 1:
            item=[0.8,0.20,0,0,0]
        elif item[1] == 1:
            item=[0.20,0.80,0,0,0]
        elif item[3] == 1:
            item=[0,0,0,0.8,0.2]
        elif item[4] == 1:
            item=[0,0,0,0.2,0.8]
        else:
            [0,0,1,0,0]

我尝试:

def conver_probs2(arg):
    test= arg
    test=np.where(test==[1.,0.,0.,0.,0.], [0.8,0.20,0.,0.,0.],test)
    return test

但是结果是这样

[[0.  0.2 0.  0.  1. ]
 [0.8 0.2 0.  0.  0. ]
 [0.  0.2 1.  0.  0. ]
 ...
 [0.  0.2 1.  0.  0. ]
 [0.  0.2 0.  0.  1. ]
 [0.8 0.2 0.  0.  0. ]]

不是我想要的...有什么想法吗?

谢谢!

2 个答案:

答案 0 :(得分:1)

一种简单的方法是迭代索引。

然后,您可能会重复使用如下所示的for循环:

for i in range(len(array)):
  if array[i][0] == 1:
    array[i] = [0.8, 0.2, 0, 0, 0] 
  ...

答案 1 :(得分:0)

如果替换阵列的形状与目标相同,则可以执行以下操作:

mask = target[target[:, 0] == 1]
target[mask] = replacements[mask]

这是一个简单的测试

test_target = np.eye(4)
test_target[2:, 0] = 1
replacements = np.ones((4, 4)) * 42

在使用np.where之前,请先尝试布尔索引。通常这就是您想要的。