是否可以使用 matplotlib 和 pylab 创建填充线图?
我想知道是否可以使用 matplotlib 创建一个填充线图,如下所示?
我安装了 matplotlib 0.91.2 和 pylab。
I was wondering if it is possible to create a filled line graph, like below, using matplotlib?
I have matplotlib 0.91.2 and pylab installed.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
matplotlib 库中的 这个示例 看起来它会做你想要的 - 你只需必须填充图形和 x 轴之间。
或者,您可以使用具有许多单像素条(或您想要的任何分辨率)的条形图。
华泰
This example in the matplotlib gallery looks like it will do what you want - you just have to fill between the graph and the x-axis.
Alternatively, you could use a bar graph with many single pixel bars (or whatever resolution you wanted).
HTH