如何在 Matplotlib 中将 xtick 标签旋转 90 度?
要将 xtick 标签旋转 90 度,我们可以采取以下步骤 −
创建一个数字列表 (x)。
向当前图形添加一个子图。
设置 X 轴上的刻度。
设置 xtick 标签,并在该方法中使用 rotate=90 作为参数。
要显示图形,请使用 show() 方法。
示例
import matplotlib.pyplot as plt plt.rcParams["figure.figsize"] = [7.00, 3.50] plt.rcParams["figure.autolayout"] = True x = [1, 2, 3, 4] ax1 = plt.subplot() ax1.set_xticks(x) ax1.set_xticklabels(["one", "two", "three", "four"], rotation=90) plt.show()
输出
广告