page contents

你如何用Python / NumPy计算百分位数?

轩辕小不懂 发布于 2021-07-09 13:40
阅读 539
收藏 0
分类:Python开发
1244
Nen
Nen
- 程序员

我们可以使用以下代码计算百分位数

import numpy as np 

a = np.array([1,2,3,4,5])

p = np.percentile(a,50)#Returns 50th percentntile,eg median 

print(p)

请先 登录 后评论