gpt4 book ai didi

python - 修复 y 轴的比例/大小

转载 作者:行者123 更新时间:2023-12-01 07:21:58 24 4
gpt4 key购买 nike

我正在使用 Plotly 来显示我正在构建的网站的一些图表。

用户可以回答一些问题,图表显示“已回答的问题/未回答的问题”的百分比。

我使用条形图和雷达图来直观地显示这样的百分比。(该百分比范围从 0 到 1)。

但是,y 轴的刻度从来不是固定的从 0 到 1,而是从 0 到回答的最高百分比。

例如:

如果用户回答了 70% 的问题,则 y 轴显示最大值为 0.7 (70%),而不是 1 (100%)。

我希望 y 轴刻度始终为 1 (100%),而不是根据用户的回答进行调整。

雷达图也会出现这种情况。

我的代码:

  fig2 = go.Figure()
fig2.add_trace(go.Bar(
x=categories,
y=[a1, b1, c1, d1, e1],
name='You',
marker_color='#A5A9F7'
))
fig2.add_trace(go.Bar(
x=categories,
y=[a2, b2, c2, d2, e2],
name='Other',
marker_color='#E89C8C'
))
fig2.update_layout(
title=go.layout.Title(
text="<b>This graph show the percentage (0 to 1)",
font=dict(size=10),
xref="paper",
x=0
)
)

最佳答案

对于条形图,您可以添加:

yaxis=dict(
范围=[0, 1]
)

这里:

fig2 = go.Figure()
fig2.add_trace(go.Bar(
x=categories,
y=[a1, b1, c1, d1, e1],
name='You',
marker_color='#A5A9F7'
))
fig2.add_trace(go.Bar(
x=categories,
y=[a2, b2, c2, d2, e2],
name='Other',
marker_color='#E89C8C'
))
fig2.update_layout(
title=go.layout.Title(
text="<b>This graph show the percentage (0 to 1)",
font=dict(size=10),
xref="paper",
x=0
),
yaxis=dict( # Here
range=[0, 1] # Here
) # Here
)

对于雷达图,您可以添加:

range = [0, 1]

类似于:

layout = go.Layout(
polar = dict(
radialaxis = dict(
visible = True,
range = [0, 50]
)
),
showlegend = False
)

https://plot.ly/pandas/radar-chart/

关于python - 修复 y 轴的比例/大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57658174/

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