gpt4 book ai didi

python - 如何收紧 'matplotlib' 数字的边界以使其更接近我的轴?

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

matplotlib制作图形时,我发现它“填充”了轴周围的空间,不符合我的口味(并且以不对称的方式)。例如与

import numpy as np
import matplotlib.pyplot as plt

fig = plt.figure()
ax = fig.add_subplot(111)

x, y = 12*np.random.rand(2, 1000)
ax.set(xlim=[2,10])
ax.plot(x, y, 'go')

我得到的东西看起来像

enter image description here

(此处以 Adob​​e Illustrator 为例)。

我希望图形的边界在所有侧面都更接近轴,特别是在左侧和右侧。

如何在 matplotlib 中以编程方式相对于每个轴调整这些边界?

最佳答案

尝试:

plt.tight_layout()

默认参数设置为:

plt.tight_layout(pad=1.08, h_pad=None, w_pad=None, rect=None)

关于python - 如何收紧 'matplotlib' 数字的边界以使其更接近我的轴?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20732347/

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