我有一个角色图(1-sigma约束),我用自己的脚本制作。 它基本上基于以下
工作labels = my_params
for i in range(len(my_params)):
for j in range(i):
ax = plt.subplot(len(my_params)-1, len(my_params)-1 , (i - 1)*(len(my_params)-1) + (j+1))
if i == len(my_params) - 1:
ax.set_xlabel(labels[j], size='x-small')
else:
ax.set_xticklabels([])
if j == 0:
ax.set_ylabel(labels[i], size='x-small')
else:
ax.set_yticklabels([])
其中my_params
是我拥有的参数列表,plot
是我的函数,它在子图中绘制特定对象。
说my_params
有11个元素a, b, c, d, e, f, g, h, i, j , l
,我现在只想绘制与a, b, c, d, i, j
对应的子图。如何提取这些子图和