码迷,mamicode.com
首页 > 其他好文 > 详细

numpy求分位数

时间:2016-08-26 16:58:18      阅读:3018      评论:0      收藏:0      [点我收藏+]

标签:

《python进行数据分析》

对其进行排序,然后选取特定位置的值

large_arr = np.random.randn(1000)

large_arr.sort()

large_arr[int(0.05 * len(large_arr))] #5%分位数

 

numpy求分位数

标签:

原文地址:http://www.cnblogs.com/mingyuxia/p/5810989.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!