Matplotlib 中的日期与时间间隔绘图
pyplotplot_date函数期望以某种线条样式绘制日期和值对。是否有推荐的方法根据日期/时间值绘制多个值或间隔数据?
The pyplot plot_date function expects pairs of dates and values to be plotted with a certain line style. Is there a recommended approach to plot multiple values or interval data against date/time values?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要绘制间隔数据,您可以使用 errorbar() 函数提供的误差线,并使用 axis.xaxis_date() 使 matplotlib 格式化轴,如 plot_date() 函数可以做到这一点。
这是一个例子:
To plot interval data, you may use the error bar provided by the errorbar() function and the use axis.xaxis_date() to make matplotlib format the axis like plot_date() function does.
Here is an example: