我有一个包含5列的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()
非常感谢任何帮助!!