📜  python代码示例中的iqr

📅  最后修改于: 2022-03-11 14:46:09.622000             🧑  作者: Mango

代码示例1
from scipy.stats import iqr

x = numpy.array([4.1, 6.2, 6.7, 7.1, 7.4, 7.4, 7.9, 8.1])
print(iqr(x, rng=(25,75), interpolation='midpoint'))