来自已经入库的数据的直方图,我有柱状图和频率值

2022-03-15 00:00:00 python matplotlib histogram

问题描述

所有matplotlibexamples和hist()都会生成一个数据集,并将该数据集提供给hist函数和一些存储箱(可能间距不均匀),该函数会自动计算直方图,然后绘制直方图。

我已经有直方图数据,我只想绘制它,我该如何做呢?!例如,我有箱子(半开范围用方括号和弧形括号表示),

[0, 1)   0
[1, 2)   3
[2, 3)   8
[3, 4)   6
[4, 5)   2
[5, 6)   3
[6, 7)   1
[7, 8)   0

解决方案

或许权重参数对您的问题有帮助。

import matplotlib.pyplot as plt

a= [1,2,3,4,5,6,7,8,9]
b= [5,3,4,5,3,2,1,2,3]
plt.hist(a,9, weights=b)
plt.show()

或者,正如tcaswell所说,您可以只制作条形图并更改x轴。

Using matplotlib how could I plot a histogram with given data in python

是链接。

相关文章