如何在绘图中修改网格尺寸?

时间:2019-04-29 17:02:21

标签: python grid plotly surface

我有一个X值列表,一个Y值列表,并且对于每对(X,Y),我都有一个矩阵形式的值Z。

我想在python中使用plotly表示它,并修改在其中绘制表面的网格,以便x轴比平时更大,得到矩形。

考虑以下示例:

import plotly.plotly as py
import plotly.graph_objs as go
import numpy as np
x = np.arange(1, 22, 1)
y = np.array([1, 3.1, 5.7, 10, 15, 20])
mean = [0]*21
cov = np.identity(21)
z = np.random.multivariate_normal(mean, cov, 18)
data = [go.Surface(x=x, y=y, z=z)]
py.plot(data)

enter image description here

在这里,x和y轴在网格中具有相同的长度,但是我希望x轴具有实际长度的两倍。我一直在寻找一种比例参数,但没有找到答案。

1 个答案:

答案 0 :(得分:3)

您可以在图形布局中手动设置轴的纵横比:

data = [go.Surface(x=x, y=y, z=z)]

layout = go.Layout(
    scene = go.layout.Scene(
    aspectmode='manual',
    aspectratio=go.layout.scene.Aspectratio(
        x=2, y=1, z=0.5
    ))
)
fig = go.Figure(data=data, layout=layout)

py.plot(fig)

这会将X轴设置为Y轴的两倍,而Z轴设置为Y轴的一半:

Plotly output after fixing aspect ratio

请参见official Plotly examples