使用绘图的带有标准阴影的线图

问题描述 投票:1回答:1

我如何使用Plotly生成带有阴影标准偏差的折线图?我正在尝试实现类似于seaborn.tsplot的功能。任何帮助表示赞赏。enter image description here

python plotly
1个回答
0
投票

我能够提出类似的建议。我将在此处发布该代码以供其他人使用或提出任何改进建议。

enter image description here导入matplotlib,随机随地导入plotly.graph_objects将numpy导入为np

#random color generation in plotly
hex_colors_dic = {}
rgb_colors_dic = {}
hex_colors_only = []
for name, hex in matplotlib.colors.cnames.items():
    hex_colors_only.append(hex)
    hex_colors_dic[name] = hex
    rgb_colors_dic[name] = matplotlib.colors.to_rgb(hex)

data = [[1, 3, 5, 4],
        [2, 3, 5, 4],
        [1, 1, 4, 5],
        [2, 3, 5, 4]]
#calculating mean and standard deviation
mean=np.mean(data,axis=0)
std=np.std(data,axis=0)

#draw figure
fig = go.Figure()
c = random.choice(hex_colors_only)
fig.add_trace(go.Scatter(x=np.arange(4), y=mean+std,
                                     mode='lines',
                                     line=dict(color=c,width =0.1),
                                     name='upper bound'))
fig.add_trace(go.Scatter(x=np.arange(4), y=mean,
                         mode='lines',
                         line=dict(color=c),
                         fill='tonexty',
                         name='mean'))
fig.add_trace(go.Scatter(x=np.arange(4), y=mean-std,
                         mode='lines',
                         line=dict(color=c, width =0.1),
                         fill='tonexty',
                         name='lower bound'))
fig.show()
© www.soinside.com 2019 - 2024. All rights reserved.