gpt4 book ai didi

django - plotly.graph_objects 中的蜘蛛图形线

转载 作者:行者123 更新时间:2023-12-03 03:14:25 24 4
gpt4 key购买 nike

但是,当我生成图表时,这条线并没有结束,我尝试了很多方法,但没有任何效果。

r 中的内容是我用已定义的值声明的一些变量

fig = go.Figure()


fig.add_trace(go.Scatterpolar(
name = "Ideal",
r=[ ideal_Funciones_Responsabilidades, ideal_etapas_propias, ideal_Aspectos_Legales, ideal_Gestion_Ambiental, ideal_Gestion_de_Seguridad,
ideal_manejo_Informacion, hallado_Tecnicos, ideal_Humanos , ideal_transversales],
theta=categories,

#connectgaps=True,
#line_color = 'darkviolet'

type= 'scatterpolar',
mode = 'lines',


))

fig.add_trace(go.Scatterpolar(
name = "Hallado",
r=[ hallado_Funciones_Responsabilidades, hallado_etapas_propias, hallado_Aspectos_Legales, hallado_Gestion_Ambiental, hallado_Gestion_de_Seguridad,
hallado_manejo_Informacion, hallado_Tecnicos, hallado_Humanos, hallado_transversales],
theta=categories,
#mode = "markers",


type= 'scatterpolar',
mode = 'lines',
#line_color = 'peru'




))




fig.update_layout(

polar=dict(


radialaxis=dict(

#visible=True,
range=[0, maximo_valor + 1]
)

),
#line_close=True,
# showlegend=False
)

Image:

enter image description here

我会关注您对这个主题的帮助。

最佳答案

您可以使用 go.Scatterpolar() 关闭该行,方法是在列表末尾重复 r 和 theta 列表中的第一个元素。

假设您声明:

r_list=[ ideal_Funciones_Responsabilidades, ideal_etapas_propias, ideal_Aspectos_Legales, ideal_Gestion_Ambiental, ideal_Gestion_de_Seguridad, 
ideal_manejo_Informacion, hallado_Tecnicos, ideal_Humanos , ideal_transversales]
r_list.append(r_list[0])

然后使用

r=r_list

关于django - plotly.graph_objects 中的蜘蛛图形线,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58511050/

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