关于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读取注册表中值的方法
Apr 08 Python
Python可变参数函数用法实例
Jul 07 Python
python开发之字符串string操作方法实例详解
Nov 12 Python
python中函数总结之装饰器闭包详解
Jun 12 Python
Python通过future处理并发问题
Oct 17 Python
浅谈pycharm出现卡顿的解决方法
Dec 03 Python
Python编程flask使用页面模版的方法
Dec 28 Python
python从子线程中获得返回值的方法
Jan 30 Python
Python函数装饰器常见使用方法实例详解
Mar 30 Python
TensorFlow实现保存训练模型为pd文件并恢复
Feb 06 Python
python实现简单的购物程序代码实例
Mar 03 Python
基于tensorflow __init__、build 和call的使用小结
Feb 26 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/08 PHP
php 删除一个数组中的某个值.兼容多维数组!
2012/02/18 PHP
PHP实现将MySQL重复ID二维数组重组为三维数组的方法
2016/08/01 PHP
用JavaScript脚本实现Web页面信息交互
2006/12/21 Javascript
js的逻辑运算符 ||
2010/05/31 Javascript
select标签模拟/美化方法采用JS外挂式插件
2013/04/01 Javascript
nullJavascript中创建对象的五种方法实例
2013/05/07 Javascript
Javascript浅谈之引用类型
2013/12/18 Javascript
jQuery中$.ajax()和$.getJson()同步处理详解
2015/08/12 Javascript
jquery.validate 自定义验证方法及validate相关参数
2016/01/18 Javascript
详解node如何让一个端口同时支持https与http
2017/07/04 Javascript
vue2 router 动态传参,多个参数的实例
2017/11/10 Javascript
vue.extend与vue.component的区别和联系
2018/09/19 Javascript
使用webpack搭建vue项目实现脚手架功能
2019/03/15 Javascript
使用layui定义一个模块并使用的例子
2019/09/14 Javascript
解决layui调用自定义方法提示未定义的问题
2019/09/14 Javascript
JavaScript监听触摸事件代码实例
2019/12/30 Javascript
详解webpack的clean-webpack-plugin插件报错
2020/10/16 Javascript
解决vue init webpack 下载依赖卡住不动的问题
2020/11/09 Javascript
Python删除空文件和空文件夹的方法
2015/07/14 Python
简单理解Python中的装饰器
2015/07/31 Python
使用python实现BLAST
2018/02/12 Python
基于numpy.random.randn()与rand()的区别详解
2018/04/17 Python
python将一个英文语句以单词为单位逆序排放的方法
2018/12/20 Python
python在新的图片窗口显示图片(图像)的方法
2019/07/11 Python
Python3 实现减少可调用对象的参数个数
2019/12/20 Python
python列表删除和多重循环退出原理详解
2020/03/26 Python
去除python中的字符串空格的简单方法
2020/12/22 Python
利用纯CSS3实现动态的自行车特效源码
2017/01/20 HTML / CSS
德国高端单身人士交友网站:ElitePartner
2018/12/02 全球购物
Unix如何添加新的用户
2014/08/20 面试题
高一新生军训感言
2014/03/02 职场文书
2015年团支部工作总结
2015/04/03 职场文书
2015年“公民道德宣传日”活动方案
2015/05/06 职场文书
2016大学生国家助学贷款承诺书
2016/03/25 职场文书
mysql如何能有效防止删库跑路
2021/10/05 MySQL