gpt4 book ai didi

python - 是否有任何函数可以使用Python在Plotly中绘制类似于geom_smooth()的函数?

转载 作者:太空宇宙 更新时间:2023-11-03 16:18:11 26 4
gpt4 key购买 nike

我使用 Plotly (python) 制作了一个散点图,我想使用类似于 geom_smooth() 函数的东西连接这些点。

如下图所示: enter image description here

最佳答案

您应该可以通过在定义线条时设置 shape='spline' 来完成此操作。这是 plotly 示例

trace2 = go.Scatter(
x=[1, 2, 3, 4, 5],
y=[6, 8, 7, 8, 6],
mode='lines+markers',
name="'spline'",
text=["tweak line smoothness<br>with 'smoothing' in line object"],
hoverinfo='text+name',
line=dict(
shape='spline'
)
)

请参阅此处的示例:plotly line charts

关于python - 是否有任何函数可以使用Python在Plotly中绘制类似于geom_smooth()的函数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38727575/

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