python画叠加图_如何在python中使用matplotlib绘制叠加的条形图?

本文介绍了如何在Python中使用matplotlib库绘制叠加的条形图,以展示两个数据列表的对比,而不是堆叠的条形图。通过调整bar函数的透明度和宽度,可以清楚地看到每个数据系列的变化。
摘要由CSDN通过智能技术生成

1586010002-jmsa.png

I want to plot a bar chart or a histogram using matplotlib. I don't want a stacked bar plot, but a superimposed barplot of two lists of data, for instance I have the following two lists of data with me:

Some code to begin with :

import matplotlib.pyplot as plt

from numpy.random import normal, uniform

highPower = [1184.53,1523.48,1521.05,1517.88,1519.88,1414.98,1419.34,

1415.13,1182.70,1165.17]

lowPower = [1000.95,1233.37, 1198.97,1198.01,1214.29,1130.86,1138.70,

1104.12,1012.95,1000.36]

plt.hist(highPower, bins=10, histtype='stepfilled', normed=True,

color='b', label='Max Power in mW')

plt.hist(lowPower, bins=10, histtype='stepfilled', normed=True,

color='r', alpha=0.5, label='Min Po

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值