如何将 Matplotlib/Pylab 图表中的 Y 轴标签水平打印?
只需使用 plt.ylabel(rotation='horizontal'),我们就可以根据我们的需求对齐标签。
步骤
使用 [0, 5] 和 [0, 5] 列表绘制直线。
通过传递 rotation='horizontal' 使用 ylabel 方法为 Y 轴设置 y 标签。
使用 xlabel 方法为 X 轴设置 x 标签。
使用 plt.show() 方法显示图形。
示例
from matplotlib import pyplot as plt plt.plot([0, 5], [0, 5]) plt.ylabel("Y-axis ", rotation='horizontal') plt.xlabel("X-axis ") plt.show()
输出
广告