Несмотря на то, что есть документация по этому вопросу, у меня было много проблем с получением правильной информации для создания сюжетов.Вот решение, которое я получил до сих пор:
Первая часть имеет значение, у меня было много проблем с импортом модулей, описанных в документации, поэтому «инструменты» - это подмодуль, который, очевидно, выполняет свою работу:
from plotly import tools
import plotly.plotly as py
import plotly.graph_objs as go
#This generates the traces for the subplots:
trace1 = pol_part_corr_1.corr().iplot(kind='heatmap',colorscale="Reds")
trace2 = pol_part_corr_2.corr().iplot(kind='heatmap',colorscale="Reds")
#Create the plot matrix:
fig = tools.make_subplots(rows=2, cols=1)
#Add traces, in this case is a hitmap so the method used is 'add_traces', for other plots it might be 'append_trace'.
fig.add_traces(trace1)
fig.add_traces(trace2)
fig['layout'].update(height=600, width=600, title='PARTICLES CORRELATION')
py.plot(fig, filename='subplots-shared-xaxes')