我使用 Python 2.7 和 matplotlib。我有一个 *.txt 数据文件:
0 14-11-2003
1 15-03-1999
12 04-12-2012
33 09-05-2007
44 16-08-1998
55 25-07-2001
76 31-12-2011
87 25-06-1993
118 16-02-1995
119 10-02-1981
145 03-05-2014
我的文件的第一列(数字)应该在我的条形图中的 Y 轴上,我的文件的第二列(日期)应该在我的直方图中的轴 OX 上。我只知道如何读取文件:
OX = []
OY = []
try :
with open('data.txt', 'r') as openedFile :
for line in openedFile :
tab = line.split()
OY.append(int(tab[0]))
OX.append(str(tab[1]))
except IOError :
print("IOError!")
我确实阅读了 matplotlib 文档,但它仍然对我没有帮助。我还想将我读到的日期添加到我的条形图中,让它看起来像
有人可以帮我吗?