在刻度之间放置标签
在 matplotlib 中,如何在刻度之间放置刻度标签(不低于刻度),
例如:在绘制一段时间内的股票价格时,我希望 x 轴次要刻度显示月份和年份,以显示连续 x 轴主要刻度之间的月份和年份(不只是在主要刻度下方)
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---
jan feb mar apr may jun jul aug sep oct nov dec jan feb mar apr may jun jul aug sep
2008 2009
in matplotlib, how do i place ticks labels between ticks (not below ticks)
for example: when plotting a the stock price over time i would like the x axis minor ticks to display months and the years to show up between consecutive x axis major ticks (not just below the major ticks)
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---
jan feb mar apr may jun jul aug sep oct nov dec jan feb mar apr may jun jul aug sep
2008 2009
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这能起到作用吗?
Will this do the trick?
你的意思是这样的吗:
- http://matplotlib.sourceforge.net/examples/pylab_examples/barchart_demo.html ??
您必须使用 xticks 和 ha (或“horizontalalignment”)参数:
查看 help(xticks) 和 help(matplotlib.text.Text) 了解更多选项
编辑:抱歉,我没有看到您也在询问如何放置下面的年份标签打勾。我认为您必须手动执行此操作,请查看我链接的示例以了解如何执行此操作。
Do you mean something like this:
- http://matplotlib.sourceforge.net/examples/pylab_examples/barchart_demo.html ??
You must use xticks and the ha (or 'horizontalalignment') parameter:
look at help(xticks) and help(matplotlib.text.Text) for more options
edit: sorry, I didn't see you are also asking for how to put the years labels below ticks. I think you must do it manually, have a look at the example I have linked to see how to do it.