使用python中的matplotlib绘制直方图

时间:2012-05-07 03:03:53

标签: python matplotlib histogram

我有一个包含2列的文件,如:

111, 3  
122, 4  
155, 3  
192, 5  
11,  9  
123, 10  
120, 23

我如何能够像((111,122,155,192,11,123,120),(3,4,3,5,9,10,23))那样写出数据。 现在我想做的就是使用matplotlib在直方图中绘制它 请帮助一些基本的想法。 !

1 个答案:

答案 0 :(得分:4)

你的意思是这样吗?

>>> import numpy as np
>>> import matplotlib.pyplot as plt
>>> xs, ys = np.loadtxt('/tmp/example.txt', delimiter=',').T
>>> print xs
[ 111.  122.  155.  192.   11.  122.  120.]
>>> print ys
[  3.   4.   3.   5.   9.  10.  23.]
>>> plt.bar(xs, ys)
<Container object of 7 artists>
>>> plt.show()

enter image description here