计算不同长度的阵列的平均值

时间:2012-04-07 20:45:13

标签: python arrays numpy mean

当它们可能有不同的长度时,是否可以计算多个阵列的平均值?我正在使用numpy。所以我想说:

numpy.array([[1, 2, 3, 4, 8],    [3, 4, 5, 6, 0]])
numpy.array([[5, 6, 7, 8, 7, 8], [7, 8, 9, 10, 11, 12]])
numpy.array([[1, 2, 3, 4],       [5, 6, 7, 8]])

现在我想计算平均值,但是忽略了“缺失”的元素(当然,我不能只是附加零,因为这会弄乱平均值)

有没有办法在不迭代数组的情况下做到这一点?

PS。这些数组都是2-D,但总是具有相同数量的坐标。即第一个数组是5和5,第二个是6和6,第三个是4和4。

一个例子:

np.array([[1, 2],    [3, 4]])
np.array([[1, 2, 3], [3, 4, 5]])
np.array([[7],       [8]])

这必须给出

(1+1+7)/3  (2+2)/2   3/1
(3+3+8)/3  (4+4)/2   5/1

以图形方式:

[1, 2]    [1, 2, 3]    [7]
[3, 4]    [3, 4, 5]    [8]

现在想象一下,这些二维数组彼此重叠,坐标重叠,有助于该坐标的平均值。

4 个答案:

答案 0 :(得分:8)

numpy.ma.mean允许您计算非掩码数组元素的平均值。但是,要使用numpy.ma.mean,您必须先将三个numpy数组合并为一个蒙版数组:

import numpy as np
x = np.array([[1, 2], [3, 4]])
y = np.array([[1, 2, 3], [3, 4, 5]])
z = np.array([[7], [8]])

arr = np.ma.empty((2,3,3))
arr.mask = True
arr[:x.shape[0],:x.shape[1],0] = x
arr[:y.shape[0],:y.shape[1],1] = y
arr[:z.shape[0],:z.shape[1],2] = z
print(arr.mean(axis = 2))

产量

[[3.0 2.0 3.0]
 [4.66666666667 4.0 5.0]]

答案 1 :(得分:1)

OP,我知道您正在寻找一个非迭代的内置解决方案,但以下实际上只需要3行(如果您将transposemeans合并为2行,那么它就会变得凌乱):

arrays = [
    np.array([1,2], [3,4]),
    np.array([1,2,3], [3,4,5]),
    np.array([7], [8])
    ]

mean = lambda x: sum(x)/float(len(x)) 

transpose = [[item[i] for item in arrays] for i in range(len(arrays[0]))]

means = [[mean(j[i] for j in t if i < len(j)) for i in range(len(max(t, key = len)))] for t in transpose]

输出:

>>>means
[[3.0, 2.0, 3.0], [4.666666666666667, 4.0, 5.0]]

答案 2 :(得分:1)

以下功能也可以通过添加不同长度的数组列来实现:

def avgNestedLists(nested_vals):
    """
    Averages a 2-D array and returns a 1-D array of all of the columns
    averaged together, regardless of their dimensions.
    """
    output = []
    maximum = 0
    for lst in nested_vals:
        if len(lst) > maximum:
            maximum = len(lst)
    for index in range(maximum): # Go through each index of longest list
        temp = []
        for lst in nested_vals: # Go through each list
            if index < len(lst): # If not an index error
                temp.append(lst[index])
        output.append(np.nanmean(temp))
    return output

离开你的第一个例子:

avgNestedLists([[1, 2, 3, 4, 8], [5, 6, 7, 8, 7, 8], [1, 2, 3, 4]])

输出:

[2.3333333333333335,
 3.3333333333333335,
 4.333333333333333,
 5.333333333333333,
 7.5,
 8.0]

np.amax(nested_lst)或np.max(nested_lst)在开头用于查找最大值的原因是因为如果嵌套列表的大小不同,它将返回一个数组。

答案 3 :(得分:1)

我经常需要用它来绘制不同长度的性能曲线的平均值。

Plot of multiple curves with different lengths

通过简单的功能(基于@unutbu的答案)解决了该问题:

def tolerant_mean(arrs):
    lens = [len(i) for i in arrs]
    arr = np.ma.empty((np.max(lens),len(arrs)))
    arr.mask = True
    for idx, l in enumerate(arrs):
    arr[:len(l),idx] = l
    return arr.mean(axis = -1), arr.std(axis=-1)

y, error = tolerant_mean(list_of_ys_diff_len)
ax.plot(np.arange(len(y))+1, y, color='green')

因此将该函数应用于上面绘制的曲线列表将产生以下结果:

Plot of mean and std of different curves with different lengths