关于python中plt.hist参数的使用详解


Posted in Python onNovember 28, 2019

如下所示:

matplotlib.pyplot.hist( 
  x, bins=10, range=None, normed=False,  
  weights=None, cumulative=False, bottom=None,  
  histtype=u'bar', align=u'mid', orientation=u'vertical',  
  rwidth=None, log=False, color=None, label=None, stacked=False,  
  hold=None, **kwargs)

x : (n,) array or sequence of (n,) arrays

这个参数是指定每个bin(箱子)分布的数据,对应x轴

bins : integer or array_like, optional

这个参数指定bin(箱子)的个数,也就是总共有几条条状图

normed : boolean, optional

If True, the first element of the return tuple will be the counts normalized to form a probability density, i.e.,n/(len(x)`dbin)

这个参数指定密度,也就是每个条状图的占比例比,默认为1

color : color or array_like of colors or None, optional

这个指定条状图的颜色

我们绘制一个10000个数据的分布条状图,共50份,以统计10000分的分布情况

""" 
  Demo of the histogram (hist) function with a few features. 
   
  In addition to the basic histogram, this demo shows a few optional features: 
   
    * Setting the number of data bins 
    * The ``normed`` flag, which normalizes bin heights so that the integral of 
     the histogram is 1. The resulting histogram is a probability density. 
    * Setting the face color of the bars 
    * Setting the opacity (alpha value). 
   
  """ 
  import numpy as np 
  import matplotlib.mlab as mlab 
  import matplotlib.pyplot as plt 
   
   
  # example data 
  mu = 100 # mean of distribution 
  sigma = 15 # standard deviation of distribution 
  x = mu + sigma * np.random.randn(10000) 
   
  num_bins = 50 
  # the histogram of the data 
  n, bins, patches = plt.hist(x, num_bins, normed=1, facecolor='blue', alpha=0.5) 
  # add a 'best fit' line 
  y = mlab.normpdf(bins, mu, sigma) 
  plt.plot(bins, y, 'r--') 
  plt.xlabel('Smarts') 
  plt.ylabel('Probability') 
  plt.title(r'Histogram of IQ: $\mu=100$, $\sigma=15$') 
   
  # Tweak spacing to prevent clipping of ylabel 
  plt.subplots_adjust(left=0.15) 
  plt.show()

关于python中plt.hist参数的使用详解

以上这篇关于python中plt.hist参数的使用详解就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持三水点靠木。

Python 相关文章推荐
Python使用scrapy采集数据过程中放回下载过大页面的方法
Apr 08 Python
python类:class创建、数据方法属性及访问控制详解
Jul 25 Python
Python简单定义与使用二叉树示例
May 11 Python
Python 实现王者荣耀中的敏感词过滤示例
Jan 21 Python
Python函数定义及传参方式详解(4种)
Mar 18 Python
Django网络框架之创建虚拟开发环境操作示例
Jun 06 Python
python 随机生成10位数密码的实现代码
Jun 27 Python
Python函数中的可变长参数详解
Sep 12 Python
Python 矩阵转置的几种方法小结
Dec 02 Python
Python通过VGG16模型实现图像风格转换操作详解
Jan 16 Python
python urllib和urllib3知识点总结
Feb 08 Python
linux中nohup和后台运行进程查看及终止
Jun 24 Python
python创建子类的方法分析
Nov 28 #Python
python 实现快速生成连续、随机字母列表
Nov 28 #Python
Python操作多维数组输出和矩阵运算示例
Nov 28 #Python
Python创建一个元素都为0的列表实例
Nov 28 #Python
Python使用matplotlib绘制Logistic曲线操作示例
Nov 28 #Python
Django框架反向解析操作详解
Nov 28 #Python
Django框架中间件定义与使用方法案例分析
Nov 28 #Python
You might like
收藏的PHP常用函数 推荐收藏保存
2010/02/21 PHP
FireFox浏览器使用Javascript上传大文件
2013/10/30 PHP
php实现邮件发送并带有附件
2014/01/24 PHP
详解PHP错误日志的获取方法
2015/07/20 PHP
php求今天、昨天、明天时间戳的简单实现方法
2016/07/28 PHP
Yii框架模拟组件调用注入示例
2019/11/11 PHP
通过JAVASCRIPT读取ASP设定的COOKIE
2007/02/15 Javascript
JavaScript获取GridView中用户点击控件的行号,列号
2009/04/14 Javascript
js几个验证函数代码
2010/03/25 Javascript
js获取RadioButtonList的Value/Text及选中值等信息实现代码
2013/03/05 Javascript
jquery+ajax验证不通过也提交表单问题处理
2014/12/12 Javascript
jQuery给多个不同元素添加class样式的方法
2015/03/26 Javascript
纯JavaScript实现的分页插件实例
2015/07/14 Javascript
js实现索引图片切换效果
2015/11/21 Javascript
js防阻塞加载的实现方法
2016/09/09 Javascript
JQuery学习总结【一】
2016/12/01 Javascript
用nodejs实现json和jsonp服务的方法
2017/08/25 NodeJs
vux uploader 图片上传组件的安装使用方法
2018/05/15 Javascript
NodeJS 实现多语言的示例代码
2018/09/11 NodeJs
深入理解NodeJS 多进程和集群
2018/10/17 NodeJs
一步快速解决微信小程序中textarea层级太高遮挡其他组件
2019/03/04 Javascript
vue中选中多个选项并且改变选中的样式的实例代码
2020/09/16 Javascript
微信小程序实现电影App导航和轮播
2020/11/30 Javascript
Python中的多重装饰器
2015/04/11 Python
Python基于递归算法实现的汉诺塔与Fibonacci数列示例
2018/04/18 Python
Python正则表达式和re库知识点总结
2019/02/11 Python
python程序运行进程、使用时间、剩余时间显示功能的实现代码
2019/07/11 Python
Django使用 Bootstrap 样式修改书籍列表过程解析
2019/08/09 Python
python实现按关键字筛选日志文件
2019/12/24 Python
python 实现仿微信聊天时间格式化显示的代码
2020/04/17 Python
Python操控mysql批量插入数据的实现方法
2020/10/27 Python
Sixt美国租车:高端豪华车型自驾体验
2017/09/02 全球购物
某公司面试题
2012/03/05 面试题
消防安全责任书
2014/04/14 职场文书
学校社团活动总结
2015/05/07 职场文书
CentOS MySql8 远程连接实战
2022/04/19 MySQL