VB.net 2010 视频教程 VB.net 2010 视频教程 python基础视频教程
SQL Server 2008 视频教程 c#入门经典教程 Visual Basic从门到精通视频教程
当前位置:
首页 > 编程开发 > python爬虫 >
  • NumPy常用统计函数(3)

的数小于或等于该值,且至少有(100-q)%的数大于或等于该值。

例:

d = np.random.randint(1, 40, (2, 5))
print("数组d:\n", d)
print("np.percentile(d, 40):    ", np.percentile(d, 40))
print("np.percentile(d, 40, axis=1):\n", np.percentile(d, 40, axis=1))

输出:

数组d:
 [[39 15 35 17 39]
 [20 12 36 19 10]]
np.percentile(d, 40):     18.200000000000003	
np.percentile(d, 40, axis=1):
 [27.8 16.2]			  

相关教程