|||
分位数(Quantile),亦称分位点,是指将一个随机变量的概率分布范围分为几个等份的数值点,常用的有中位数(即二分位数)、四分位数、百分位数等。
Python求不同的分位数(以GNSS定位东向误差为算例):
import numpy as np
abs_east = np.fabs(pos_east) #pos_east为list类型
pos_east_95 = np.percentile(abs_east,95)
pos_east_68 = np.percentile(abs_east,68)
pos_east_50 = np.percentile(abs_east,50) #即中位数
Archiver|手机版|科学网 ( 京ICP备07017567号-12 )
GMT+8, 2024-11-26 10:54
Powered by ScienceNet.cn
Copyright © 2007- 中国科学报社