蟒蛇 & Matplotlib - 从字符串创建日期刻度
我有一个字符串数组,其中包含格式如下的日期:“01/01/09”。我还有一个带有日期值的浮点数数组。
我想获取这些日期并最终将它们显示为图表上的 x 刻度标签。
如何使用浮点数或字符串来标记 matplotlib 图表上 x 轴上的刻度? (使用类似 xticks 的东西)
I have an array of strings which contain dates formatted as such: '01/01/09'. I also have an array of floats with the date values.
I want to take these dates and ultimately display them as x tick labels on my graph.
How do I use the floats or strings to label the ticks on the x-axis on my matplotlib graph? (using something like xticks)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用
set_xticks
设置刻度数(和值)。您可以使用set_xticklabels
设置刻度的文本You set the count (and values) of the ticks using
set_xticks
. You set the text of the ticks usingset_xticklabels