gpt4 book ai didi

python - Plotly - 如何更改 python 中的 x 轴标签?

转载 作者:太空狗 更新时间:2023-10-30 02:58:35 29 4
gpt4 key购买 nike

我正在绘制水平堆积条形图,我希望 x 轴上的每个项目都反射(reflect)日期时间值而不是整数。我以秒为单位绘制这些值。如何更改 x 轴刻度标签以反射(reflect)日期时间?谢谢!

import plotly.plotly as plt
import plotly.graph_objs as gph

data = [
('task 1', 300),
('task 2', 1200),
('task 3', 500)
]
traces = []
for (key, val) in data:
traces += [gph.Bar(
x=val,
y=1,
name=key,
orientation='h',
)]

layout = gph.Layout(barmode='stack')
fig = gph.Figure(data=traces, layout=layout)
plt.iplot(fig)

最佳答案

这是一个例子(docs)

layout = gph.Layout(
title='Plot Title',
xaxis=dict(
title='x Axis',
titlefont=dict(
family='Courier New, monospace',
size=18,
color='#7f7f7f'
)
),
yaxis=dict(
title='y Axis',
titlefont=dict(
family='Courier New, monospace',
size=18,
color='#7f7f7f'
)
)
)

关于python - Plotly - 如何更改 python 中的 x 轴标签?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33597213/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com