如何使用Python脚本将两个值绘制为直方图?

时间:2016-01-05 09:50:55

标签: python matplotlib histogram

我必须使用python脚本在直方图中绘制两个长度的值。

 File=[1,2,3] 
 File1=[3,4,5,6] 
 files=len(File) 
 files1=len(File1)

我想绘制值的长度。 x轴中的文件和文件1。 y轴需要计数为0,10,20 ....

如下图所示,使用我需要的python脚本 enter image description here 在此先感谢

1 个答案:

答案 0 :(得分:0)

我想你想要bar plot这样:

import matplotlib.pyplot as plt

plt.bar([0, 1], [files, files1])
plt.show()

如果您想了解如何格式化和更改标签,轴限制等,请查看matplotlib examples

results