numpy高阶函数——np.histogram

更新时间:2023-07-20 18:07:28 阅读: 评论:0

numpy⾼阶函数——np.histogram
np.diff(a, n=1, axis=-1):n 表⽰差分的阶数;
怎样可以快速瘦下来>> x = np.array([1, 2, 4, 7, 0])
>> np.diff(x)
永远和你在一道array([ 1,  2,  3, -7])
>> np.diff(x, n=2)
路飞壁纸array([  1,  1, -10])
1. np.histogram
官⽅⽂档:
numpy.histogram(a, bins=10, range=None, normed=Fal, weights=None, density=None)
返回值,有两个,
hist : array
bin_edges : array of dtype float,bin edges 的长度要是 hist 的长度加1,bin edges (length(hist)+1),也即 (bin_edges[0],
bin_edges[1]) ⇒ hist[0],….,(bin_edges[-2], bin_edges[-1]) ⇒ hist[-1],bin_edges 参数与输⼊参数的 bins 保持⼀致;>>> a = np.arange(5)苹果画法简笔画
>>> hist, bin_edges = np.histogram(a, density=True)擦黑
>>> hist
array([ 0.5,  0. ,  0.5,  0. ,  0. ,  0.5,  0. ,  0.5,  0. ,  0.5])
>>> hist.sum()
2.4999999999999996
>>> np.sum(hist*np.diff(bin_edges))
善良的女秘密书
1.0
# hist*np.diff(bin_edges) ⇒其实表⽰⼀种概率分布;
>冬虫夏草作用>截击球

本文发布于:2023-07-20 18:07:28,感谢您对本站的认可!

本文链接:https://www.wtabcd.cn/fanwen/fan/82/1107330.html

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。

标签:苹果   阶数   截击   简笔画
相关文章
留言与评论(共有 0 条评论)
   
验证码:
推荐文章
排行榜
Copyright ©2019-2022 Comsenz Inc.Powered by © 专利检索| 网站地图