标签: python python-3.x plotly plotly-python
我正在通过plotly创建折线图。我遇到两个问题。 Plotly默认在x轴上显示每第7个值,并且在我的第一个x轴值上显示年值(如屏幕截图所示)。这是运行代码。如果任何一个都可以解决,那就太好了!
{{1}}
谢谢!
答案 0 :(得分:1)
要使年份消失,您只需为 Object x Song 1 : Name: name Artist: artist Length: length 制定另一个规范,例如xaxis_tickformat就可以得到:
Object x Song 1 : Name: name Artist: artist Length: length
xaxis_tickformat
或者您可以申请xaxis_tickformat = '%b'并获得:
xaxis_tickformat = '%b'
在两种情况下,根据您的要求删除年份。
xaxis_tickformat = '%B'