增加 Matplotlib 中 X 轴标签的空间

matplotlibpythondata visualization

要增加 Matplotlib 中 X 轴标签的空间,我们可以使用 subplots_adjust() 方法参数中的间距变量。

步骤

  • 设置图形大小并调整子图之间和周围的填充。

  • 使用 figure() 方法创建新图形或激活现有图形。

  • 使用 numpy 创建 x 和 y 数据点。

  • 使用 plot() 方法绘制 x 和 y。

  • 使用 xlabel() 方法和 LaTex 放置 xlabel表达式。

  • 使用 subplots_adjust() 方法增加或减少 X 轴标签的空间

  • 要显示图形,请使用 show() 方法。

示例

import numpy as np
from matplotlib import pyplot as plt
plt.rcParams["figure.figsize"] = [7.50, 3.50]
plt.rcParams["figure.autolayout"] = True
fig = plt.figure()
x = np.linspace(-2, 2, 10)
y = np.exp(x)
plt.plot(x, y)
plt.xlabel("$\bf{y=e^{x}}$")
spacing = 0.100
fig.subplots_adjust(bottom=spacing)
plt.show()

输出


相关文章