• Python学习笔记第四十四天(NumPy 统计函数)


    NumPy 统计函数

    NumPy 提供了很多统计函数,用于从数组中查找最小元素,最大元素,百分位标准差和方差等。 函数说明如下:

    numpy.amin() 和 numpy.amax()

    numpy.amin() 用于计算数组中的元素沿指定轴的最小值。

    numpy.amax() 用于计算数组中的元素沿指定轴的最大值。

    # 实例 1
    import numpy as np 
     
    a = np.array([[3,7,5],[8,4,3],[2,4,9]])  
    print ('我们的数组是:')
    print (a)
    print ('\n')
    print ('调用 amin() 函数:')
    print (np.amin(a,1))
    print ('\n')
    print ('再次调用 amin() 函数:')
    print (np.amin(a,0))
    print ('\n')
    print ('调用 amax() 函数:')
    print (np.amax(a))
    print ('\n')
    print ('再次调用 amax() 函数:')
    print (np.amax(a, axis =  0))
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18

    输出结果为:

    我们的数组是:
    [[3 7 5]
     [8 4 3]
     [2 4 9]]
    
    
    调用 amin() 函数:
    [3 3 2]
    
    
    再次调用 amin() 函数:
    [2 4 3]
    
    
    调用 amax() 函数:
    9
    
    
    再次调用 amax() 函数:
    [8 7 9]
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20

    numpy.ptp()

    numpy.ptp()函数计算数组中元素最大值与最小值的差(最大值 - 最小值)。

    # 实例 2
    import numpy as np 
     
    a = np.array([[3,7,5],[8,4,3],[2,4,9]])  
    print ('我们的数组是:')
    print (a)
    print ('\n')
    print ('调用 ptp() 函数:')
    print (np.ptp(a))
    print ('\n')
    print ('沿轴 1 调用 ptp() 函数:')
    print (np.ptp(a, axis =  1))
    print ('\n')
    print ('沿轴 0 调用 ptp() 函数:')
    print (np.ptp(a, axis =  0))
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15

    输出结果为:

    我们的数组是:
    [[3 7 5]
     [8 4 3]
     [2 4 9]]
    
    
    调用 ptp() 函数:
    7
    
    
    沿轴 1 调用 ptp() 函数:
    [4 5 7]
    
    
    沿轴 0 调用 ptp() 函数:
    [6 3 6]
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16

    numpy.percentile()

    百分位数是统计中使用的度量,表示小于这个值的观察值的百分比。 函数numpy.percentile()接受以下参数。

    numpy.percentile(a, q, axis)
    
    • 1

    参数说明:

    • a: 输入数组
    • q: 要计算的百分位数,在 0 ~ 100 之间
    • axis: 沿着它计算百分位数的轴

    首先明确百分位数:

    第 p 个百分位数是这样一个值,它使得至少有 p% 的数据项小于或等于这个值,且至少有 (100-p)% 的数据项大于或等于这个值。

    举个例子:高等院校的入学考试成绩经常以百分位数的形式报告。比如,假设某个考生在入学考试中的语文部分的原始分数为 54 分。相对于参加同一考试的其他学生来说,他的成绩如何并不容易知道。但是如果原始分数54分恰好对应的是第70百分位数,我们就能知道大约70%的学生的考分比他低,而约30%的学生考分比他高。

    这里的 p = 70。

    # 实例 3
    import numpy as np 
     
    a = np.array([[10, 7, 4], [3, 2, 1]])
    print ('我们的数组是:')
    print (a)
     
    print ('调用 percentile() 函数:')
    # 50% 的分位数,就是 a 里排序之后的中位数
    print (np.percentile(a, 50)) 
     
    # axis 为 0,在纵列上求
    print (np.percentile(a, 50, axis=0)) 
     
    # axis 为 1,在横行上求
    print (np.percentile(a, 50, axis=1)) 
     
    # 保持维度不变
    print (np.percentile(a, 50, axis=1, keepdims=True))
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19

    输出结果为:

    我们的数组是:
    [[10  7  4]
     [ 3  2  1]]
    调用 percentile() 函数:
    3.5
    [6.5 4.5 2.5]
    [7. 2.]
    [[7.]
     [2.]]
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9

    numpy.median()

    numpy.median() 函数用于计算数组 a 中元素的中位数(中值)

    # 实例 4
    import numpy as np 
     
    a = np.array([[30,65,70],[80,95,10],[50,90,60]])  
    print ('我们的数组是:')
    print (a)
    print ('\n')
    print ('调用 median() 函数:')
    print (np.median(a))
    print ('\n')
    print ('沿轴 0 调用 median() 函数:')
    print (np.median(a, axis =  0))
    print ('\n')
    print ('沿轴 1 调用 median() 函数:')
    print (np.median(a, axis =  1))
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15

    输出结果为:

    我们的数组是:
    [[30 65 70]
     [80 95 10]
     [50 90 60]]
    
    
    调用 median() 函数:
    65.0
    
    
    沿轴 0 调用 median() 函数:
    [50. 90. 60.]
    
    
    沿轴 1 调用 median() 函数:
    [65. 80. 60.]
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16

    numpy.mean()

    numpy.mean() 函数返回数组中元素的算术平均值。 如果提供了轴,则沿其计算。

    算术平均值是沿轴的元素的总和除以元素的数量。

    # 实例 5
    import numpy as np 
     
    a = np.array([[1,2,3],[3,4,5],[4,5,6]])  
    print ('我们的数组是:')
    print (a)
    print ('\n')
    print ('调用 mean() 函数:')
    print (np.mean(a))
    print ('\n')
    print ('沿轴 0 调用 mean() 函数:')
    print (np.mean(a, axis =  0))
    print ('\n')
    print ('沿轴 1 调用 mean() 函数:')
    print (np.mean(a, axis =  1))
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15

    输出结果为:

    我们的数组是:
    [[1 2 3]
     [3 4 5]
     [4 5 6]]
    
    
    调用 mean() 函数:
    3.6666666666666665
    
    
    沿轴 0 调用 mean() 函数:
    [2.66666667 3.66666667 4.66666667]
    
    
    沿轴 1 调用 mean() 函数:
    [2. 4. 5.]
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16

    numpy.average()

    numpy.average() 函数根据在另一个数组中给出的各自的权重计算数组中元素的加权平均值。

    该函数可以接受一个轴参数。 如果没有指定轴,则数组会被展开。

    加权平均值即将各数值乘以相应的权数,然后加总求和得到总体值,再除以总的单位数。

    考虑数组[1,2,3,4]和相应的权重[4,3,2,1],通过将相应元素的乘积相加,并将和除以权重的和,来计算加权平均值。

    加权平均值 = (14+23+32+41)/(4+3+2+1)

    # 实例 6
    import numpy as np 
     
    a = np.array([1,2,3,4])  
    print ('我们的数组是:')
    print (a)
    print ('\n')
    print ('调用 average() 函数:')
    print (np.average(a))
    print ('\n')
    # 不指定权重时相当于 mean 函数
    wts = np.array([4,3,2,1])  
    print ('再次调用 average() 函数:')
    print (np.average(a,weights = wts))
    print ('\n')
    # 如果 returned 参数设为 true,则返回权重的和  
    print ('权重的和:')
    print (np.average([1,2,3,  4],weights =  [4,3,2,1], returned =  True))
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18

    输出结果为:

    我们的数组是:
    [1 2 3 4]
    
    
    调用 average() 函数:
    2.5
    
    
    再次调用 average() 函数:
    2.0
    
    
    权重的和:
    (2.0, 10.0)
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14

    在多维数组中,可以指定用于计算的轴。

    # 实例 7
    import numpy as np 
     
    a = np.arange(6).reshape(3,2)  
    print ('我们的数组是:')
    print (a)
    print ('\n')
    print ('修改后的数组:')
    wt = np.array([3,5])  
    print (np.average(a, axis =  1, weights = wt))
    print ('\n')
    print ('修改后的数组:')
    print (np.average(a, axis =  1, weights = wt, returned =  True))
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13

    输出结果为:

    我们的数组是:
    [[0 1]
     [2 3]
     [4 5]]
    
    
    修改后的数组:
    [0.625 2.625 4.625]
    
    
    修改后的数组:
    (array([0.625, 2.625, 4.625]), array([8., 8., 8.]))
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12

    标准差

    标准差是一组数据平均值分散程度的一种度量。

    标准差是方差的算术平方根。

    标准差公式如下:

    std = sqrt(mean((x - x.mean())**2))
    
    • 1

    如果数组是 [1,2,3,4],则其平均值为 2.5。 因此,差的平方是 [2.25,0.25,0.25,2.25],并且再求其平均值的平方根除以 4,即 sqrt(5/4) ,结果为 1.1180339887498949。

    # 实例 8
    import numpy as np 
     
    print (np.std([1,2,3,4]))
    
    • 1
    • 2
    • 3
    • 4

    输出结果为:

    1.1180339887498949
    
    • 1

    方差

    统计中的方差(样本方差)是每个样本值与全体样本值的平均数之差的平方值的平均数,即 mean((x - x.mean())** 2)。

    换句话说,标准差是方差的平方根。

    # 实例 9
    import numpy as np
     
    print (np.var([1,2,3,4]))
    
    • 1
    • 2
    • 3
    • 4

    输出结果为:

    1.25
    
    • 1

    结束语

    今天学习的是PythonNumPy 算术函数学会了吗。 今天学习内容总结一下:

    1. NumPy 统计函数
    2. 标准差
    3. 方差
  • 相关阅读:
    Vue框架总结(一、Vue基础知识)
    树莓派Raspberrypi安装Kali Linux保姆教程(通过树莓派安装ARM Kali教程)
    前端编程应该了解的数据结构——栈、队列
    Redis源码与设计剖析 -- 12.集合对象
    创建型设计模式学习笔记
    关于proxmox,给Zstack的公开建议
    《大数据之路:阿里巴巴大数据实践》-第1篇 数据技术篇 -第3章数据同步
    【算法面试必刷Java版十四】链表的奇偶重排
    开源的java 代码分析库介绍
    数据结构_B树(C语言)
  • 原文地址:https://blog.csdn.net/qq_54129105/article/details/128116995