python - 使用循环在 plotly 中定义多个 y 轴

标签 python python-3.x plotly

我必须在多个 y 轴上绘制线条。然而,在 plotly 中,go.Layout 中的轴生成非常冗长,就像 plotly 文档中的这个示例一样:https://plot.ly/python/multiple-axes/

layout = go.Layout(
title='multiple y-axes example',
width=800,
xaxis=dict(
    domain=[0.3, 0.7]
),
yaxis=dict(
    title='yaxis title',
    titlefont=dict(
        color='#1f77b4'
    ),
    tickfont=dict(
        color='#1f77b4'
    )

## repeat for every new y-axis.

在 matplotlib 中,我喜欢通过生成所有不同的轴并像这样循环处理绘图来节省代码:

import matplotlib.pyplot as plt
import numpy as np

# generate dummy data
data = []
for i in range(5):
    arr = np.random.random(10) * i
    data.append(arr)

colors = ['black', 'red', 'blue', 'green', 'purple']
labels = ['label1', 'label2', 'label3', 'label4', 'label5']

# define other paramters (e.g. linestyle etc.) in lists

fig, ax_orig = plt.subplots(figsize=(10, 5))
for i, (arr, color, label) in enumerate(zip(data, colors, labels)):
    if i == 0:
        ax = ax_orig
    else:
        ax = ax_orig.twinx()
        ax.spines['right'].set_position(('outward', 50 * (i - 1)))
    ax.plot(arr, color=color, marker='o')
    ax.set_ylabel(label, color=color)
    ax.tick_params(axis='y', colors=color)
fig.tight_layout()
plt.show()

figure generated by example

由于对象生成中使用的 dict-syntax,我似乎无法使类似的东西在 plotly 中工作。我试过提前通过循环生成轴字典并将它们传递给 go.Layout 但没有成功。 如果有人能指出一种减少冗余的优雅方法,我们将不胜感激。

祝一切顺利,提前致谢。

最佳答案

您可以利用 Python 的 **kwargs ,即您创建一个包含所有布局值的字典并将其传递给 Plotly 的布局。

import numpy as np
import plotly

plotly.offline.init_notebook_mode()

# generate dummy data, taken from question
data = []
for i in range(5):
    arr = np.random.random(10) * i
    data.append(arr)

labels = ['label1', 'label2', 'label3', 'label4', 'label5']

plotly_data = []
plotly_layout = plotly.graph_objs.Layout()

# your layout goes here
layout_kwargs = {'title': 'y-axes in loop',
                 'xaxis': {'domain': [0, 0.8]}}

for i, d in enumerate(data):
    # we define our layout keys by string concatenation
    # * (i > 0) is just to get rid of the if i > 0 statement
    axis_name = 'yaxis' + str(i + 1) * (i > 0)
    yaxis = 'y' + str(i + 1) * (i > 0)
    plotly_data.append(plotly.graph_objs.Scatter(y=d, 
                                                 name=labels[i]))
    layout_kwargs[axis_name] = {'range': [0, i + 0.1],
                                'position': 1 - i * 0.04}

    plotly_data[i]['yaxis'] = yaxis
    if i > 0:
        layout_kwargs[axis_name]['overlaying'] = 'y'

fig = plotly.graph_objs.Figure(data=plotly_data, layout=plotly.graph_objs.Layout(**layout_kwargs))
plotly.offline.iplot(fig)

enter image description here

关于python - 使用循环在 plotly 中定义多个 y 轴,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50381672/

相关文章:

python - 更改列表中特定位置的某些字符

python - 在 MATPLOTLIB 中一一显示两个条形图

python - 在 Django 1.3 media_url 与 static_url 中显示样式

python - 按列迭代 numpy 数组

python-3.x - '错误' : 'JSON parse error - Expecting value: line 1 column 1 (char 0)' How do I fix this

python - 使用elasticsearch-py关闭与Elasticsearch集群的连接

python - 是否有一些 a, b 使得 max(a, b) != max(b, a)?

javascript - 在 javascript 中使用 plotly 进行直播

arrays - 使用 node.js 和在轴中传递数组来创建图形

javascript - 绘图设置颜色