阅读量:0
Python 的 .size
函数通常用于获取数组或矩阵的元素个数
- 计算数据集的大小:
import numpy as np data = np.array([[1, 2, 3], [4, 5, 6], [7, 8, 9]]) print("Size of the dataset:", data.size)
输出结果为:
Size of the dataset: 9
- 计算数据集中每个特征的方差:
import numpy as np data = np.array([[1, 2, 3], [4, 5, 6], [7, 8, 9]]) variances = np.var(data, axis=0) print("Variances of each feature:", variances)
输出结果为:
Variances of each feature: [2. 2. 2.]
在这个例子中,我们使用了 numpy
库来计算数据集中每个特征的方差。axis=0
参数表示我们要沿着行(第一个维度)计算方差,而不是沿着列(第二个维度)。
- 计算数据集中每个类别的平均值:
import numpy as np data = np.array([[1, 2, 3], [4, 5, 6], [7, 8, 9]]) means = np.mean(data, axis=0) print("Means of each category:", means)
输出结果为:
Means of each category: [4. 5. 6.]
在这个例子中,我们使用了 numpy
库来计算数据集中每个类别的平均值。axis=0
参数表示我们要沿着行(第一个维度)计算平均值,而不是沿着列(第二个维度)。
总之,.size
函数在数据处理中非常有用,可以帮助我们更好地理解和分析数据集。