用 Python 绘制直方图
我有两个列表,x 和 y。
x 包含字母表 AZ,Y 包含它们在文件中的频率。
我尝试研究如何在直方图中绘制这些值,但在理解如何绘制它方面没有成功。
n, bins, patches = plt.hist(x, 26, normed=1, facecolor='blue', alpha=0.75)
x 会是上述列表中的列表 x 吗?
I have two lists, x and y.
x contains the alphabet A-Z and Y contains the frequency of them in a file.
I've tried researching how to plot these values in a histogram but has had no success with understanding how to plot it.
n, bins, patches = plt.hist(x, 26, normed=1, facecolor='blue', alpha=0.75)
Would x be list x in the lists mentioned above?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
hist
适用于值的集合并计算并从中绘制直方图。在您的情况下,您已经预先计算了每组(字母)的频率。要以直方图形式表示数据,请使用更好的 matplotlib
bar
:hist
works on a collection of values and computes and draws the histogram from them.In your case you already precalculated the frequency of each group (letter). To represent your data in an histogram form use better matplotlib
bar
: