码迷,mamicode.com
首页 > 编程语言 > 详细

在一张图中显示两个hist图(python)

时间:2021-06-06 19:01:54      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:range   mat   mic   highlight   space   dom   end   nbsp   his   

用python在一个图中显示画两个hist图:

import random
import numpy
from matplotlib import pyplot

x = [random.gauss(3,1) for _ in range(400)]
y = [random.gauss(4,2) for _ in range(400)]

bins = numpy.linspace(-10, 10, 100)

pyplot.hist(x, bins, alpha=0.5, label=‘x‘)
pyplot.hist(y, bins, alpha=0.5, label=‘y‘)
pyplot.legend(loc=‘upper right‘)
pyplot.show()

 

结果显示:

技术图片

在一张图中显示两个hist图(python)

标签:range   mat   mic   highlight   space   dom   end   nbsp   his   

原文地址:https://www.cnblogs.com/huadongw/p/14854129.html

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