python numpy求四分位距
Posted mahailuo
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python numpy求四分位距相关的知识,希望对你有一定的参考价值。
import numpy as np ages=[3,3,6,7,7,10,10,10,11,13,30] lower_q=np.quantile(ages,0.25,interpolation=‘lower‘)#下四分位数 higher_q=np.quantile(ages,0.75,interpolation=‘higher‘)#上四分位数 int_r=higher_q-lower_q#四分位距
以上是关于python numpy求四分位距的主要内容,如果未能解决你的问题,请参考以下文章