如何在 Matplotlib 中将 xlabel 设置为 X 轴的末端?


要在 matplotlib 中将xlabel 设置在 X 轴的末端,我们可以采取以下步骤 −

  • 使用 numpy 为创建数据点。

  • 使用 subplot() 方法,向当前图像中添加子图。

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

  • 使用set_label() 方法设置 X 轴上的标签,并指定fontsize=16、loc=left、 color=red

  • 要将xlabel 设置在 X 轴的末端,请使用坐标y

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

示例

import numpy as np
from matplotlib import pyplot as plt
plt.rcParams["figure.figsize"] = [7.00, 3.50]
plt.rcParams["figure.autolayout"] = True
x = np.linspace(1, 2, 5)
ax = plt.subplot()
ax.plot(x, np.log(x))
ax.set_xticks(x)
label = ax.set_xlabel('X ->', fontsize=16, loc="left", c="red")
ax.xaxis.set_label_coords(1.0, -0.025)
plt.show()

输出

更新时间:20-05-06

10K+ 浏览

启动你的 职业生涯

通过完成课程获得认证

开始
广告