如何在同一张图上绘制 4 个直方图
我有以下问题:
我在 matplotlib.pyplot 中使用 hist()
我正在尝试在同一个图表上创建 4 个直方图。以及它们中每一个的近似高斯。
如何在同一个图表上绘制 4 个直方图,而不使它们互相阻挡(并排)?有什么想法吗?
I have the following problem:
I am using hist() in matplotlib.pyplot
I am trying to create 4 histograms on the same graph. and an approximation gaussian for each one of them.
how can I plot the 4 histograms on the same graph, without them blocking each other (side by side)? any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
matplotlib 文档中有几个示例。这看起来像是回答了你的问题:
There are several examples in the matplotlib documentation. This one looks like it answers your question: