gpt4 book ai didi

Python 子图函数参数

转载 作者:行者123 更新时间:2023-11-28 19:51:24 26 4
gpt4 key购买 nike

我很难为 python 子图函数输入参数。

我想要的是根据以下标准在同一个图像文件上绘制 4 个图形

left
space
right
space
left
space
right

我尝试了 3 个数字的不同方式,但输出没有正确显示。

最佳答案

你的意思是这样的吗?

import matplotlib.pyplot as plt

fig = plt.figure()
ax1 = fig.add_subplot(4,2,1)
ax2 = fig.add_subplot(4,2,4)
ax3 = fig.add_subplot(4,2,5)
ax4 = fig.add_subplot(4,2,8)

fig.subplots_adjust(hspace=1)

plt.show()

enter image description here

关于Python 子图函数参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5054593/

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