计算二维NumPy数组中各维度的平均值
我们可以用numpy的函数np.mean()找出2D数组中每一行和每一列的平均值。在这里,我们必须提供寻找平均值的轴。
语法: numpy.mean(arr, axis = None)
对于行平均值:axis =1
对于柱状平均值:axis =0
示例:
# Importing Library
import numpy as np
# creating 2d array
arr = np.array([[1, 2, 3], [4, 5, 6], [7, 8, 9]])
# Calculating mean across Rows
row_mean = np.mean(arr, axis=1)
row1_mean = row_mean[0]
print("Mean of Row 1 is", row1_mean)
row2_mean = row_mean[1]
print("Mean of Row 2 is", row2_mean)
row3_mean = row_mean[2]
print("Mean of Row 3 is", row3_mean)
# Calculating mean across Columns
column_mean = np.mean(arr, axis=0)
column1_mean = column_mean[0]
print("Mean of column 1 is", column1_mean)
column2_mean = column_mean[1]
print("Mean of column 2 is", column2_mean)
column3_mean = column_mean[2]
print("Mean of column 3 is", column3_mean)
输出:
Mean of Row 1 is 2.0
Mean of Row 2 is 5.0
Mean of Row 3 is 8.0
Mean of column 1 is 4.0
Mean of column 2 is 5.0
Mean of column 3 is 6.0