gpt4 book ai didi

python - 在矩阵中使用 numpy.sum 和 numpy.mean 时如何忽略值

转载 作者:太空狗 更新时间:2023-10-29 22:06:21 25 4
gpt4 key购买 nike

在 numpy 中应用 sum 和 mean 时,有没有办法避免使用特定值?

例如,我想在计算结果时避免使用 -999 值。

In [14]: c = np.matrix([[4., 2.],[4., 1.]])

In [15]: d = np.matrix([[3., 2.],[4., -999.]])

In [16]: np.sum([c, d], axis=0)
Out[16]:
array([[ 7., 4.],
[ 8., -998.]])

In [17]: np.mean([c, d], axis=0)
Out[17]:
array([[ 3.5, 2. ],
[ 4. , -499. ]])

最佳答案

使用屏蔽数组:

>>> c = np.ma.array([[4., 2.], [4., 1.]])
>>> d = np.ma.masked_values([[3., 2.], [4., -999]], -999)

>>> np.ma.array([c, d]).sum(axis=0)
masked_array(data =
[[7.0 4.0]
[8.0 1.0]],
mask =
[[False False]
[False False]],
fill_value = 1e+20)

>>> np.ma.array([c, d]).mean(axis=0)
masked_array(data =
[[3.5 2.0]
[4.0 1.0]],
mask =
[[False False]
[False False]],
fill_value = 1e+20)

关于python - 在矩阵中使用 numpy.sum 和 numpy.mean 时如何忽略值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44913275/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com