首页 > 编程语言 > 详细

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

时间:2021-06-06 00:45:23      阅读:14      评论:0      收藏:0      [点我收藏+]

用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)

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

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!