x осей заголовков на подзаговорах Plotly Python - PullRequest
0 голосов
/ 29 января 2020

Я пытаюсь добавить одинаковые заголовки на x-axes и y-axes к четырем диаграммам Ганта, отображаемым в виде вспомогательных участков. Я нашел в Интернете figs.update_layout(), однако, это только название на первом графике, но не все. Я нашел несколько ответов с помощью R, но любая помощь с python была бы отличной

figs = make_subplots(
rows=2, cols=2,
shared_xaxes=False,
subplot_titles =('Plot 1', 'PLot 2', 'PLot 3', 'Plot 4')
)
figs.update_layout(
    title="Plot Title",
    xaxis_title="Miliseconds",
    yaxis_title="Services",
)

for trace in fig_operable.data:
    figs.add_trace(trace, row=1, col=1)
for trace in fig_dynamic.data:
    figs.add_trace(trace, row=2, col=1)
for trace in fig_early.data:
    figs.add_trace(trace, row=1, col=2)
for trace in fig_hmi.data:
    figs.add_trace(trace, row=2, col=2)

figs.update_layout(showlegend=False, title_text="Title of charts")
figs.show()

1 Ответ

0 голосов
/ 29 января 2020

IIU C вы ищете что-то вроде

import numpy as np
import plotly.graph_objs as go
from plotly.subplots import make_subplots

subplot_titles = ['Plot 1', 'Plot 2', 'Plot 3', 'Plot 4']
xaxis_title="Miliseconds"
yaxis_title="Services"
rows = 2
cols = 2
height = 300 * rows

trace = go.Scatter(x=np.linspace(1,100,100),
                   y=np.linspace(1,100,100))


fig = make_subplots(rows=rows, cols=cols,
                    shared_xaxes=False,
                    subplot_titles=subplot_titles
                    )

for i, col in enumerate(subplot_titles):
    r = int(np.ceil(((i+1)/cols)))
    c = i%2+1
    fig.add_trace(trace, row=r, col=c)
    fig.update_xaxes(title_text=xaxis_title, row=r, col=c)
    fig.update_yaxes(title_text=yaxis_title, row=r, col=c)

fig.update_layout(showlegend=False,
                  title_text="Title of charts",
                  title_x=0.5,
                  height=height)
fig.show()    

enter image description here

Если вам нужны какие-либо другие сомнения, вы можете взглянуть на документация здесь .

...