python求平均工资_python – numpy数组的计算平均值
我有一个2d numpy数组(6 x 6)元素.我想从中创建另一个2D数组,其中每个块是块大小窗口中所有元素的平均值.目前,我有foll.码:import os, numpydef avg_func(data, blocksize = 2):# Takes data, and averages all positive (only numerical) numbers in blocksdimen...