密谋:如何在X轴上更改默认日期并从轴上删除年份?

时间:2020-10-08 19:58:17

标签: python python-3.x plotly plotly-python

我正在通过plotly创建折线图。我遇到两个问题。 Plotly默认在x轴上显示每第7个值,并且在我的第一个x轴值上显示年值(如屏幕截图所示)。这是运行代码。如果任何一个都可以解决,那就太好了!

{{1}}

enter image description here

谢谢!

1 个答案:

答案 0 :(得分:1)

要使年份消失,您只需为 Object x Song 1 : Name: name Artist: artist Length: length 制定另一个规范,例如xaxis_tickformat就可以得到:

enter image description here

或者您可以申请xaxis_tickformat = '%b'并获得:

enter image description here

在两种情况下,根据您的要求删除年份。

完整代码:

xaxis_tickformat = '%B'