如何在 Matplotlib 中将轴标签右对齐或顶对齐?
右对齐轴标签(X 轴标签)或顶对齐轴标签(Y 轴标签),我们可以执行以下步骤:
- 设置图形大小和调整子图之间和周围的间距。
- 创建图形和一组子图。
- 初始化一个变量 N,表示数据样本数。
- 使用 plot() 方法绘制 x 和 y 数据点。
- 分别在右侧和顶部位置设置 xlabel 和 ylabel。
- 使用 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, ax = plt.subplots() N = 10 x = np.random.rand(N) y = np.random.rand(N) ax.plot(x, y) ax.set_xlabel("X-axis", loc="right") ax.set_ylabel("Y-axis", loc="top") plt.show()
输出
广告