gpt4 book ai didi

python - 列表中列表的直方图

转载 作者:行者123 更新时间:2023-12-05 05:30:36 25 4
gpt4 key购买 nike

我有一个包含 8 个列表的列表。每个子列表的长度为 100,我想绘制直方图,4 行 2 列。

我想设置标题以及 x 和 y 标签。除了所有直方图的大标题。

我厌倦了这个:

mytitles = ['Label 30 sub 0', 'Label 30 sub 1',
'label 50 sub 0', 'label 50 sub 3',
'label 50 sub 5', 'label 50 sub 6',
'label 555', 'label 666']

fig, axes = plt.subplots(nrows=4, ncols=2)
fig.subplots_adjust(hspace=0.5)
fig.suptitle('Confidence Intervals lengths')

for i in sub_list:
plt.hist(i, bins = 20)
for j in mytitles:
plt.title(j)
plt.show()

然而,这创建了一些空的直方图。

最佳答案

您需要遍历轴。否则它将只使用最后一个子图。

for i, ax, title in zip(sub_list, axes.flat, mytitles):
ax.hist(i, bins = 20)
ax.set_title(title)
plt.show()

关于python - 列表中列表的直方图,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/74616545/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com