gpt4 book ai didi

plotly - 如何更改 plotly 3d 图中的轴标签?

转载 作者:行者123 更新时间:2023-12-05 00:45:25 28 4
gpt4 key购买 nike

X = np.random.randn(100, 90)
import plotly.graph_objects as go

fig = go.Figure(data=[go.Surface(z=X)])

fig.update_layout(title='something', autosize=False,
width=500, height=500,
margin=dict(l=65, r=50, b=65, t=90))

fig.show()

尝试了各种方法,但轴标签没有改变。他们只会说“x”和“y”。

最佳答案

您可以在 scene 属性中更改轴标签。

import numpy as np
import plotly.graph_objects as go

X = np.random.randn(100, 90)
import plotly.graph_objects as go

fig = go.Figure(data=[go.Surface(z=X)])

fig.update_layout(
title='something',
autosize=False,
width=500,
height=500,
margin=dict(l=65, r=50, b=65, t=90),
scene=dict(
xaxis_title='X Axis Title',
yaxis_title='Y Axis Title',
zaxis_title='Z Axis Title',
),
)

fig.show()

enter image description here

关于plotly - 如何更改 plotly 3d 图中的轴标签?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63692109/

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