使用输入文件在python中使用matplotlib创建直方图

时间:2018-05-08 02:22:35

标签: python matplotlib file-io histogram

我有一个包含5列的txt文件,例如' data.txt中':

data.txt

我想使用col 2(年龄)的数据作为x轴创建直方图,并将整个列计为' count'对于y轴

我目前正在使用下面的代码,但我只是得到了奇怪的结果

with open('Players.txt') as f:
   v = np.loadtxt(f, delimiter= ' ', dtype="str", skiprows=1, usecols=2)

plt.hist(v, bins=100)
plt.xlabel('Age')
plt.ylabel('Count')
plt.title('Histogram of Age')

plt.show()

非常感谢任何帮助!!

0 个答案:

没有答案